/*
- * Copyright (c) 2015-2016, Intel Corporation
+ * Copyright (c) 2015-2017, Intel Corporation
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
auto ni_inserter = inserter(new_inter, new_inter.end());
set_intersection(top_inter.begin(), top_inter.end(),
v_tops.begin(), v_tops.end(), ni_inserter);
- top_inter = move(new_inter);
+ top_inter = std::move(new_inter);
succs.insert(v);
}
/*
- * Copyright (c) 2015-2016, Intel Corporation
+ * Copyright (c) 2015-2017, Intel Corporation
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
if (look_for_double_byte) {
DAccelScheme da = findBestDoubleAccelScheme(paths, terminating);
if (da.double_byte.size() <= DOUBLE_SHUFTI_LIMIT) {
- rv.double_byte = move(da.double_byte);
+ rv.double_byte = std::move(da.double_byte);
rv.double_cr = move(da.double_cr);
rv.double_offset = da.double_offset;
}
assert(id < build.literal_info.size());
new_reports.insert(build.literal_info.at(id).fragment_id);
}
- ds.reports = move(new_reports);
+ ds.reports = std::move(new_reports);
}
}
auto &frag = build.fragments.at(fragment_id);
new_reports.insert(frag.lit_program_offset);
}
- ds.reports = move(new_reports);
+ ds.reports = std::move(new_reports);
}
}
return tie(g[source(a, g)].index, g[target(a, g)].index) <
tie(g[source(b, g)].index, g[target(b, g)].index);
});
- lit_edge_map.emplace(m.first, move(edge_list));
+ lit_edge_map.emplace(m.first, std::move(edge_list));
}
return lit_edge_map;
updated_tops.insert(top_mapping.at(t));
}
}
- h[e].tops = move(updated_tops);
+ h[e].tops = std::move(updated_tops);
if (h[e].tops.empty()) {
DEBUG_PRINTF("edge (start,%zu) has only unused tops\n", h[v].index);
dead.push_back(e);
/*
- * Copyright (c) 2015-2016, Intel Corporation
+ * Copyright (c) 2015-2017, Intel Corporation
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
DEBUG_PRINTF("vertex %zu has top %u\n", h[v].index, t);
new_tops.insert(top_mapping.at(t));
}
- h[e].tops = move(new_tops);
+ h[e].tops = std::move(new_tops);
}
}
auto pt_inserter = inserter(pruned_tops, pruned_tops.end());
set_intersection(h[e].tops.begin(), h[e].tops.end(),
used_tops.begin(), used_tops.end(), pt_inserter);
- h[e].tops = move(pruned_tops);
+ h[e].tops = std::move(pruned_tops);
if (h[e].tops.empty()) {
DEBUG_PRINTF("edge (start,%zu) has only unused tops\n", h[v].index);
dead.push_back(e);
return; // No new buckets created.
}
- buckets = move(out);
+ buckets = std::move(out);
removeSingletonBuckets(buckets);
}