File: permutation.cpp

package info (click to toggle)
tiledarray 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 9,568 kB
  • sloc: cpp: 53,449; javascript: 1,599; sh: 393; ansic: 226; python: 223; xml: 195; makefile: 36
file content (539 lines) | stat: -rw-r--r-- 18,597 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
/*
 * This file is a part of TiledArray.
 * Copyright (C) 2013  Virginia Tech
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *   (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

#include "TiledArray/permutation.h"
#include "TiledArray/symm/permutation.h"
#include "tiledarray.h"
#include "unit_test_config.h"

#include <boost/mpl/list.hpp>
#include <boost/test/unit_test.hpp>

namespace detail {
template <typename P>
P identity(unsigned int d);

template <>
TiledArray::Permutation identity<TiledArray::Permutation>(unsigned int d) {
  return TiledArray::Permutation::identity(d);
}

template <>
TiledArray::symmetry::Permutation identity<TiledArray::symmetry::Permutation>(
    unsigned int) {
  return TiledArray::symmetry::Permutation();
}
}  // namespace detail

template <typename Perm>
struct TPermutationFixture {
  TPermutationFixture() = default;
  ~TPermutationFixture() = default;

  Perm p = Perm({2, 0, 1});
  const Perm I = detail::identity<Perm>(3);
  const Perm p102 = Perm({1, 0, 2});
  const Perm p021 = Perm({0, 2, 1});
  const Perm p120 = Perm({1, 2, 0});
  const Perm p201 = Perm({2, 0, 1});
  const Perm p210 = Perm({2, 1, 0});
};

struct PermutationFixture {
  PermutationFixture() {}
  ~PermutationFixture() {}

  template <typename Perm>  // permutation type
  TPermutationFixture<Perm>& fixture() {
    static TPermutationFixture<Perm> fixture_;
    return fixture_;
  }

};  // struct PermutationFixture

typedef boost::mpl::list<TiledArray::Permutation,
                         TiledArray::symmetry::Permutation>
    ptypes;
typedef boost::mpl::list<TiledArray::Permutation> ptypes0;
typedef boost::mpl::list<TiledArray::symmetry::Permutation> ptypes1;

BOOST_FIXTURE_TEST_SUITE(permutation_suite, PermutationFixture)

BOOST_AUTO_TEST_CASE_TEMPLATE(constructor, Permutation, ptypes0) {
  // check default constructor
  BOOST_REQUIRE_NO_THROW(Permutation p0);
  Permutation p0;
  BOOST_CHECK_EQUAL(p0.data().size(), 0ul);

  // check variable list constructor
  BOOST_REQUIRE_NO_THROW(Permutation p1({0, 1, 2}));
  Permutation p1({0, 1, 2});
  BOOST_CHECK_EQUAL(p1.data()[0], 0u);
  BOOST_CHECK_EQUAL(p1.data()[1], 1u);
  BOOST_CHECK_EQUAL(p1.data()[2], 2u);

  // check boost array constructor
  std::vector<unsigned int> a{0, 1, 2};
  BOOST_REQUIRE_NO_THROW(Permutation p2(a));
  Permutation p2(a);
  BOOST_CHECK_EQUAL(p2.data()[0], 0u);
  BOOST_CHECK_EQUAL(p2.data()[1], 1u);
  BOOST_CHECK_EQUAL(p2.data()[2], 2u);

  // check iterator constructor
  BOOST_REQUIRE_NO_THROW(Permutation p3(a.begin(), a.end()));
  Permutation p3(a.begin(), a.end());
  BOOST_CHECK_EQUAL(p3.data()[0], 0u);
  BOOST_CHECK_EQUAL(p3.data()[1], 1u);
  BOOST_CHECK_EQUAL(p3.data()[2], 2u);
}

BOOST_AUTO_TEST_CASE_TEMPLATE(iteration0, Permutation, ptypes0) {
  const auto& p = fixture<Permutation>().p;
  std::array<std::size_t, 3> a = {{2, 0, 1}};
  std::array<std::size_t, 3>::const_iterator a_it = a.begin();
  for (typename Permutation::const_iterator it = p.begin(); it != p.end();
       ++it, ++a_it)
    BOOST_CHECK_EQUAL(*it, *a_it);  // check that basic iteration is correct
}

BOOST_AUTO_TEST_CASE_TEMPLATE(iteration1, Permutation, ptypes1) {
  const auto& p = fixture<Permutation>().p;
  std::array<std::size_t, 3> a = {{2, 0, 1}};
  std::array<std::size_t, 3>::const_iterator a_it = a.begin();
  for (typename Permutation::const_iterator it = p.begin(); it != p.end();
       ++it, ++a_it)
    BOOST_CHECK_EQUAL(it->second,
                      *a_it);  // check that basic iteration is correct
}

BOOST_AUTO_TEST_CASE_TEMPLATE(accessor, Permutation, ptypes) {
  const auto& p201 = fixture<Permutation>().p201;
  BOOST_CHECK_EQUAL(p201[0], 2u);  // check that accessor is readable
  BOOST_CHECK_EQUAL(p201[1], 0u);
  BOOST_CHECK_EQUAL(p201[2], 1u);
  // no write access.
}

BOOST_AUTO_TEST_CASE_TEMPLATE(cycles_decomposition, Permutation, ptypes) {
  const auto& p201 = fixture<Permutation>().p201;
  const auto& p021 = fixture<Permutation>().p021;

  {  // {0,2,1} = (1,2)
    auto cycles = p021.cycles();
    BOOST_CHECK_EQUAL(cycles.size(), 1u);
    BOOST_CHECK_EQUAL(cycles[0], std::vector<unsigned int>({1u, 2u}));
  }
  {  // {2,0,1} = (0,1,2)
    auto cycles = p201.cycles();
    BOOST_CHECK_EQUAL(cycles.size(), 1u);
    BOOST_CHECK_EQUAL(cycles[0], std::vector<unsigned int>({0u, 1u, 2u}));
  }
  {  // {0,2,1,5,3,4} = (1,2)(3,4,5)
    auto p = Permutation{0, 2, 1, 5, 3, 4};
    auto cycles = p.cycles();
    BOOST_CHECK_EQUAL(cycles.size(), 2u);
    BOOST_CHECK_EQUAL(cycles[0], std::vector<unsigned int>({1u, 2u}));
    BOOST_CHECK_EQUAL(cycles[1], std::vector<unsigned int>({3u, 4u, 5u}));
  }
}

BOOST_AUTO_TEST_CASE_TEMPLATE(ostream, Permutation, ptypes) {
  const auto& p201 = fixture<Permutation>().p201;
  boost::test_tools::output_test_stream output;
  output << p201;
  BOOST_CHECK(!output.is_empty(false));
  BOOST_CHECK(output.check_length(18, false));
  BOOST_CHECK(output.is_equal("{0->2, 1->0, 2->1}"));
}

BOOST_AUTO_TEST_CASE_TEMPLATE(equality, Permutation, ptypes) {
  const auto& p = fixture<Permutation>().p;
  const auto& p201 = fixture<Permutation>().p201;
  const auto& p021 = fixture<Permutation>().p021;
  Permutation p0213({0, 2, 1, 3});

  // Check that identical permutations are equal
  BOOST_CHECK(p == p201);

  // Check that a permutation is equal to itself
  BOOST_CHECK(p201 == p201);

  // Check that permutations of equal size with different elements are not equal
  BOOST_CHECK(!(p0213 == p201));
  BOOST_CHECK(!(p201 == p0213));

  // Compare permutations of different sizes with the same leading elements
  // TA::Permutation has fixed domain size, hence these are not equal
  if (std::is_same<Permutation, TiledArray::Permutation>::value) {
    BOOST_CHECK(!(p0213 == p021));
    BOOST_CHECK(!(p021 == p0213));
  }
  // TA::symmetry::Permutation does not fix the domain size, hence these are
  // equal
  if (std::is_same<Permutation, TiledArray::symmetry::Permutation>::value) {
    BOOST_CHECK(p0213 == p021);
    BOOST_CHECK(p021 == p0213);
  }
}

BOOST_AUTO_TEST_CASE_TEMPLATE(inequality, Permutation, ptypes) {
  //  const auto& p = fixture<Permutation>().p;
  const auto& p201 = fixture<Permutation>().p201;
  const auto& p102 = fixture<Permutation>().p102;
  const auto& p120 = fixture<Permutation>().p120;
  const auto& p021 = fixture<Permutation>().p021;
  Permutation p0213({0, 2, 1, 3});

  // Check that different permutations are not equal
  BOOST_CHECK(p102 != p201);

  // Check that identical permutations are not, not equal
  BOOST_CHECK(!(p102 != p102));
  BOOST_CHECK(!(Permutation({1, 0, 2}) != p102));

  // Check that permutations of equal size with different elements are not equal
  BOOST_CHECK(p120 != p021);
  BOOST_CHECK(p021 != p120);

  // Compare permutations of different sizes with the same leading elements
  // TA::Permutation has fixed domain size, hence these are not equal
  if (std::is_same<Permutation, TiledArray::Permutation>::value) {
    BOOST_CHECK(p021 != p0213);
    BOOST_CHECK(p0213 != p021);
  }
  // TA::symmetry::Permutation does not fix the domain size, hence these are
  // equal
  if (std::is_same<Permutation, TiledArray::symmetry::Permutation>::value) {
    BOOST_CHECK(not(p021 != p0213));
    BOOST_CHECK(not(p0213 != p021));
  }
}

BOOST_AUTO_TEST_CASE_TEMPLATE(less_than, Permutation, ptypes) {
  const auto& p210 = fixture<Permutation>().p210;
  const auto& p120 = fixture<Permutation>().p120;
  Permutation p0213({0, 2, 1, 3});

  // Check that a lexicographically smaller permutation is less than a larger
  // permutation
  BOOST_CHECK(p120 < p210);
  // TA::Permutation has fixed domain, hence this is true
  if (std::is_same<Permutation, TiledArray::Permutation>::value)
    BOOST_CHECK(p0213 < p120);
  // TA::symmetry::Permutation's domain is not fixed, hence this is false
  if (std::is_same<Permutation, TiledArray::symmetry::Permutation>::value)
    BOOST_CHECK(not(p0213 < p120));

  BOOST_CHECK(!(p210 < p120));
}

BOOST_AUTO_TEST_CASE_TEMPLATE(permute_helper, Permutation, ptypes) {
  const auto& p = fixture<Permutation>().p;
  {
    std::vector<int> a1({1, 2, 3});
    std::vector<int> ar({2, 3, 1});
    std::vector<int> a2(3);

    // check permutation applied via TA::detail::permute_array()
    BOOST_CHECK_NO_THROW(TiledArray::detail::permute_array(p, a1, a2));
    BOOST_CHECK_EQUAL_COLLECTIONS(a2.begin(), a2.end(), ar.begin(), ar.end());
  }
  {
    std::array<int, 3> a1 = {{1, 2, 3}};
    std::array<int, 3> ar = {{2, 3, 1}};
    std::array<int, 3> a2;

    // check permutation applied via detail::permute()
    BOOST_CHECK_NO_THROW(TiledArray::detail::permute_array(p, a1, a2));
    BOOST_CHECK_EQUAL_COLLECTIONS(a2.begin(), a2.end(), ar.begin(), ar.end());
  }
}

BOOST_AUTO_TEST_CASE_TEMPLATE(identity, Permutation, ptypes) {
  const auto& p = fixture<Permutation>().p;
  Permutation reference({0, 1, 2});
  BOOST_CHECK_EQUAL(detail::identity<Permutation>(3u), reference);
  BOOST_CHECK_EQUAL(p.identity(), reference);
}

BOOST_AUTO_TEST_CASE_TEMPLATE(mult, Permutation, ptypes) {
  //  const auto& p = fixture<Permutation>().p;
  const auto& I = fixture<Permutation>().I;
  const auto& p102 = fixture<Permutation>().p102;
  const auto& p120 = fixture<Permutation>().p120;
  const auto& p021 = fixture<Permutation>().p021;
  const auto& p201 = fixture<Permutation>().p201;
  const auto& p210 = fixture<Permutation>().p210;

  // check permutation multiplication function
  BOOST_CHECK_EQUAL(I.mult(I), I);
  BOOST_CHECK_EQUAL(p102.mult(I), p102);
  BOOST_CHECK_EQUAL(p021.mult(I), p021);
  BOOST_CHECK_EQUAL(p120.mult(I), p120);
  BOOST_CHECK_EQUAL(p201.mult(I), p201);
  BOOST_CHECK_EQUAL(p210.mult(I), p210);

  BOOST_CHECK_EQUAL(I.mult(p102), p102);
  BOOST_CHECK_EQUAL(p102.mult(p102), I);
  BOOST_CHECK_EQUAL(p021.mult(p102), p120);
  BOOST_CHECK_EQUAL(p120.mult(p102), p021);
  BOOST_CHECK_EQUAL(p201.mult(p102), p210);
  BOOST_CHECK_EQUAL(p210.mult(p102), p201);

  BOOST_CHECK_EQUAL(I.mult(p021), p021);
  BOOST_CHECK_EQUAL(p102.mult(p021), p201);
  BOOST_CHECK_EQUAL(p021.mult(p021), I);
  BOOST_CHECK_EQUAL(p120.mult(p021), p210);
  BOOST_CHECK_EQUAL(p201.mult(p021), p102);
  BOOST_CHECK_EQUAL(p210.mult(p021), p120);

  BOOST_CHECK_EQUAL(I.mult(p120), p120);
  BOOST_CHECK_EQUAL(p102.mult(p120), p210);
  BOOST_CHECK_EQUAL(p021.mult(p120), p102);
  BOOST_CHECK_EQUAL(p120.mult(p120), p201);
  BOOST_CHECK_EQUAL(p201.mult(p120), I);
  BOOST_CHECK_EQUAL(p210.mult(p120), p021);

  BOOST_CHECK_EQUAL(I.mult(p201), p201);
  BOOST_CHECK_EQUAL(p102.mult(p201), p021);
  BOOST_CHECK_EQUAL(p021.mult(p201), p210);
  BOOST_CHECK_EQUAL(p120.mult(p201), I);
  BOOST_CHECK_EQUAL(p201.mult(p201), p120);
  BOOST_CHECK_EQUAL(p210.mult(p201), p102);

  BOOST_CHECK_EQUAL(I.mult(p210), p210);
  BOOST_CHECK_EQUAL(p102.mult(p210), p120);
  BOOST_CHECK_EQUAL(p021.mult(p210), p201);
  BOOST_CHECK_EQUAL(p120.mult(p210), p102);
  BOOST_CHECK_EQUAL(p201.mult(p210), p021);
  BOOST_CHECK_EQUAL(p210.mult(p210), I);

  // check permutation multiplication operator
  BOOST_CHECK_EQUAL(I * I, I);
  BOOST_CHECK_EQUAL(p102 * I, p102);
  BOOST_CHECK_EQUAL(p021 * I, p021);
  BOOST_CHECK_EQUAL(p120 * I, p120);
  BOOST_CHECK_EQUAL(p201 * I, p201);
  BOOST_CHECK_EQUAL(p210 * I, p210);

  BOOST_CHECK_EQUAL(I * p102, p102);
  BOOST_CHECK_EQUAL(p102 * p102, I);
  BOOST_CHECK_EQUAL(p021 * p102, p120);
  BOOST_CHECK_EQUAL(p120 * p102, p021);
  BOOST_CHECK_EQUAL(p201 * p102, p210);
  BOOST_CHECK_EQUAL(p210 * p102, p201);

  BOOST_CHECK_EQUAL(I * p021, p021);
  BOOST_CHECK_EQUAL(p102 * p021, p201);
  BOOST_CHECK_EQUAL(p021 * p021, I);
  BOOST_CHECK_EQUAL(p120 * p021, p210);
  BOOST_CHECK_EQUAL(p201 * p021, p102);
  BOOST_CHECK_EQUAL(p210 * p021, p120);

  BOOST_CHECK_EQUAL(I * p120, p120);
  BOOST_CHECK_EQUAL(p102 * p120, p210);
  BOOST_CHECK_EQUAL(p021 * p120, p102);
  BOOST_CHECK_EQUAL(p120 * p120, p201);
  BOOST_CHECK_EQUAL(p201 * p120, I);
  BOOST_CHECK_EQUAL(p210 * p120, p021);

  BOOST_CHECK_EQUAL(I * p201, p201);
  BOOST_CHECK_EQUAL(p102 * p201, p021);
  BOOST_CHECK_EQUAL(p021 * p201, p210);
  BOOST_CHECK_EQUAL(p120 * p201, I);
  BOOST_CHECK_EQUAL(p201 * p201, p120);
  BOOST_CHECK_EQUAL(p210 * p201, p102);

  BOOST_CHECK_EQUAL(I * p210, p210);
  BOOST_CHECK_EQUAL(p102 * p210, p120);
  BOOST_CHECK_EQUAL(p021 * p210, p201);
  BOOST_CHECK_EQUAL(p120 * p210, p102);
  BOOST_CHECK_EQUAL(p201 * p210, p021);
  BOOST_CHECK_EQUAL(p210 * p210, I);

  // check permutation multiply-assign operator
  Permutation x = I;
  BOOST_CHECK_EQUAL(x *= I, I);
  x = p102;
  BOOST_CHECK_EQUAL(x *= I, p102);
  x = p021;
  BOOST_CHECK_EQUAL(x *= I, p021);
  x = p120;
  BOOST_CHECK_EQUAL(x *= I, p120);
  x = p201;
  BOOST_CHECK_EQUAL(x *= I, p201);
  x = p210;
  BOOST_CHECK_EQUAL(x *= I, p210);

  x = I;
  BOOST_CHECK_EQUAL(x *= p102, p102);
  x = p102;
  BOOST_CHECK_EQUAL(x *= p102, I);
  x = p021;
  BOOST_CHECK_EQUAL(x *= p102, p120);
  x = p120;
  BOOST_CHECK_EQUAL(x *= p102, p021);
  x = p201;
  BOOST_CHECK_EQUAL(x *= p102, p210);
  x = p210;
  BOOST_CHECK_EQUAL(x *= p102, p201);

  x = I;
  BOOST_CHECK_EQUAL(x *= p021, p021);
  x = p102;
  BOOST_CHECK_EQUAL(x *= p021, p201);
  x = p021;
  BOOST_CHECK_EQUAL(x *= p021, I);
  x = p120;
  BOOST_CHECK_EQUAL(x *= p021, p210);
  x = p201;
  BOOST_CHECK_EQUAL(x *= p021, p102);
  x = p210;
  BOOST_CHECK_EQUAL(x *= p021, p120);

  x = I;
  BOOST_CHECK_EQUAL(x *= p120, p120);
  x = p102;
  BOOST_CHECK_EQUAL(x *= p120, p210);
  x = p021;
  BOOST_CHECK_EQUAL(x *= p120, p102);
  x = p120;
  BOOST_CHECK_EQUAL(x *= p120, p201);
  x = p201;
  BOOST_CHECK_EQUAL(x *= p120, I);
  x = p210;
  BOOST_CHECK_EQUAL(x *= p120, p021);

  x = I;
  BOOST_CHECK_EQUAL(x *= p201, p201);
  x = p102;
  BOOST_CHECK_EQUAL(x *= p201, p021);
  x = p021;
  BOOST_CHECK_EQUAL(x *= p201, p210);
  x = p120;
  BOOST_CHECK_EQUAL(x *= p201, I);
  x = p201;
  BOOST_CHECK_EQUAL(x *= p201, p120);
  x = p210;
  BOOST_CHECK_EQUAL(x *= p201, p102);

  x = I;
  BOOST_CHECK_EQUAL(x *= p210, p210);
  x = p102;
  BOOST_CHECK_EQUAL(x *= p210, p120);
  x = p021;
  BOOST_CHECK_EQUAL(x *= p210, p201);
  x = p120;
  BOOST_CHECK_EQUAL(x *= p210, p102);
  x = p201;
  BOOST_CHECK_EQUAL(x *= p210, p021);
  x = p210;
  BOOST_CHECK_EQUAL(x *= p210, I);
}

BOOST_AUTO_TEST_CASE_TEMPLATE(pow, Permutation, ptypes) {
  //  const auto& p = fixture<Permutation>().p;
  //  const auto& I = fixture<Permutation>().I;
  //  const auto& p102 = fixture<Permutation>().p102;
  //  const auto& p120 = fixture<Permutation>().p120;
  //  const auto& p021 = fixture<Permutation>().p021;
  //  const auto& p201 = fixture<Permutation>().p201;
  //  const auto& p210 = fixture<Permutation>().p210;
  const Permutation p0231({0, 2, 3, 1});

  // Check that powers of permutations are computed correctly
  BOOST_CHECK_EQUAL(p0231.pow(0), p0231.identity());
  BOOST_CHECK_EQUAL(p0231.pow(1), p0231);
  BOOST_CHECK_EQUAL(p0231.pow(2), p0231 * p0231);
  BOOST_CHECK_EQUAL(p0231.pow(3), p0231 * p0231 * p0231);
  BOOST_CHECK_EQUAL(p0231.pow(4), p0231 * p0231 * p0231 * p0231);
  BOOST_CHECK_EQUAL(p0231.pow(5), p0231 * p0231 * p0231 * p0231 * p0231);
  BOOST_CHECK_EQUAL(p0231.pow(6),
                    p0231 * p0231 * p0231 * p0231 * p0231 * p0231);
  BOOST_CHECK_EQUAL(p0231.pow(7),
                    p0231 * p0231 * p0231 * p0231 * p0231 * p0231 * p0231);
  BOOST_CHECK_EQUAL(p0231.pow(8), p0231 * p0231 * p0231 * p0231 * p0231 *
                                      p0231 * p0231 * p0231);

  // Check that inverse powers of permutations are computed correctly
  Permutation I0231 = p0231.inv();
  BOOST_CHECK_EQUAL(p0231.pow(-1), I0231);
  BOOST_CHECK_EQUAL(p0231.pow(-2), I0231 * I0231);
  BOOST_CHECK_EQUAL(p0231.pow(-3), I0231 * I0231 * I0231);
  BOOST_CHECK_EQUAL(p0231.pow(-4), I0231 * I0231 * I0231 * I0231);
  BOOST_CHECK_EQUAL(p0231.pow(-5), I0231 * I0231 * I0231 * I0231 * I0231);
  BOOST_CHECK_EQUAL(p0231.pow(-6),
                    I0231 * I0231 * I0231 * I0231 * I0231 * I0231);
  BOOST_CHECK_EQUAL(p0231.pow(-7),
                    I0231 * I0231 * I0231 * I0231 * I0231 * I0231 * I0231);
  BOOST_CHECK_EQUAL(p0231.pow(-8), I0231 * I0231 * I0231 * I0231 * I0231 *
                                       I0231 * I0231 * I0231);
}

BOOST_AUTO_TEST_CASE_TEMPLATE(inverse, Permutation, ptypes) {
  const auto& I = fixture<Permutation>().I;
  const auto& p102 = fixture<Permutation>().p102;
  const auto& p120 = fixture<Permutation>().p120;
  const auto& p021 = fixture<Permutation>().p021;
  const auto& p201 = fixture<Permutation>().p201;
  const auto& p210 = fixture<Permutation>().p210;

  // check permutation inverse function
  BOOST_CHECK_EQUAL(I.inv(), I);
  BOOST_CHECK_EQUAL(p102.inv(), p102);
  BOOST_CHECK_EQUAL(p021.inv(), p021);
  BOOST_CHECK_EQUAL(p120.inv(), p201);
  BOOST_CHECK_EQUAL(p201.inv(), p120);
  BOOST_CHECK_EQUAL(p210.inv(), p210);

  // check permutation inverse power
  BOOST_CHECK_EQUAL(I ^ -1, I);
  BOOST_CHECK_EQUAL(p102 ^ -1, p102);
  BOOST_CHECK_EQUAL(p021 ^ -1, p021);
  BOOST_CHECK_EQUAL(p120 ^ -1, p201);
  BOOST_CHECK_EQUAL(p201 ^ -1, p120);
  BOOST_CHECK_EQUAL(p210 ^ -1, p210);
}

BOOST_AUTO_TEST_CASE_TEMPLATE(array_permutation, Permutation, ptypes) {
  const auto& p = fixture<Permutation>().p;
  std::array<int, 3> a1{{1, 2, 3}};
  std::array<int, 3> ar{{2, 3, 1}};
  std::array<int, 3> a2 = p * a1;
  std::array<int, 3> a3 = a1;
  a3 *= p;
  BOOST_CHECK_EQUAL_COLLECTIONS(a2.begin(), a2.end(), ar.begin(),
                                ar.end());  // check assignment permutation
  BOOST_CHECK_EQUAL_COLLECTIONS(a3.begin(), a3.end(), ar.begin(),
                                ar.end());  // check in-place permutation
}

BOOST_AUTO_TEST_CASE_TEMPLATE(vector_permutation, Permutation, ptypes) {
  const auto& p = fixture<Permutation>().p;
  std::vector<int> a1{1, 2, 3};
  std::vector<int> ar{2, 3, 1};
  std::vector<int> a2 = p * a1;
  std::vector<int> a3 = a1;
  a3 *= p;
  BOOST_CHECK(a2 == ar);  // check assignment permutation
  BOOST_CHECK(a3 == ar);  // check in-place permutation
}

BOOST_AUTO_TEST_SUITE_END()