mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
remove debug out
This commit is contained in:
parent
a150e58893
commit
601e506d54
1 changed files with 1 additions and 4 deletions
|
@ -324,17 +324,14 @@ namespace datalog {
|
|||
if (cycle_len < 2)
|
||||
return;
|
||||
auto aux = container[permutation_cycle[0]];
|
||||
verbose_stream() << "xx " << cycle_len << "\n";
|
||||
for (unsigned i = 1; i < cycle_len; i++)
|
||||
container[permutation_cycle[i-1]] = container[permutation_cycle[i]];
|
||||
container[permutation_cycle[cycle_len-1]] = aux;
|
||||
}
|
||||
template<class T, class M>
|
||||
void permute_by_cycle(ref_vector<T,M> & container, unsigned cycle_len, const unsigned * permutation_cycle) {
|
||||
if (cycle_len<2) {
|
||||
if (cycle_len < 2)
|
||||
return;
|
||||
}
|
||||
verbose_stream() << "ptr\n";
|
||||
T * aux = container.get(permutation_cycle[0]);
|
||||
for (unsigned i=1; i < cycle_len; i++) {
|
||||
container.set(permutation_cycle[i-1], container.get(permutation_cycle[i]));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue