spot 2.13
permute.hh
1// -*- coding: utf-8 -*-
2// Copyright (C) by the Spot authors, see the AUTHORS file for details.
3//
4// This file is part of Spot, a model checking library.
5//
6// Spot is free software; you can redistribute it and/or modify it
7// under the terms of the GNU General Public License as published by
8// the Free Software Foundation; either version 3 of the License, or
9// (at your option) any later version.
10//
11// Spot is distributed in the hope that it will be useful, but WITHOUT
12// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
14// License for more details.
15//
16// You should have received a copy of the GNU General Public License
17// along with this program. If not, see <http://www.gnu.org/licenses/>.
18
19#pragma once
20
21#include <spot/misc/common.hh>
22#include <vector>
23#include <algorithm>
24
25namespace spot
26{
27
28 // Reorder `data` according the permutation in `indices` by
29 // following the cycles in the permutation. Additionally, if an
30 // index is -1, the corresponding value is moved to the end of the
31 // data.
32 //
33 // After running this algorithm, data[i] should be moved to
34 // data[indices[i]] or to the end of the data if indices[i] == -1U.
35 //
36 // If indices.size() != data.size(), the minimum of both size is
37 // used, and indices are expected to stay in this range.
38 template<typename values>
39 void permute_vector(std::vector<values>& data,
40 const std::vector<unsigned>& indices)
41 {
42 unsigned n = std::min(data.size(), indices.size());
43 if (n == 0)
44 return;
45 std::vector<bool> done(n, false);
46 unsigned end_of_data = n - 1; // index for the first -1
47 for (unsigned i = 0; i < n; ++i)
48 {
49 if (done[i] || indices[i] == i)
50 continue; // already done or identity
51 unsigned next = indices[i];
52 if (next == -1U)
53 {
54 next = end_of_data--;
55 if (next == i)
56 continue;
57 }
58 values tmp = std::move(data[i]);
59 while (next != i)
60 {
61 SPOT_ASSERT(next < n);
62 if (done[next])
63 throw std::invalid_argument
64 ("permute_vector: invalid permutation");
65 // this is a swap, but std::swap will not work
66 // when data[next] is a bool_reference.
67 values tmp2 = std::move(data[next]);
68 data[next] = std::move(tmp);
69 tmp = std::move(tmp2);
70 done[next] = true;
71
72 next = indices[next];
73 if (next == -1U)
74 next = end_of_data--;
75 }
76 data[i] = std::move(tmp);
77 done[i] = true;
78 }
79 }
80
81}
Definition: automata.hh:26

Please direct any question, comment, or bug report to the Spot mailing list at spot@lrde.epita.fr.
Generated on Fri Feb 27 2015 10:00:07 for spot by doxygen 1.9.4