nissy-core

The "engine" of nissy, including the H48 optimal solver.
git clone https://git.tronto.net/nissy-core
Download | Log | Files | Refs | README | LICENSE

ModeNameSize
-rw-r--r--.gitignore29L
-rw-r--r--LICENSE638L
-rw-r--r--Makefile55L
-rw-r--r--README.md298L
-rwxr-xr-xconfigure.sh135L
-rw-r--r--cpp/examples/move.cpp17L
-rw-r--r--cpp/examples/solve_h48h3k2.cpp90L
-rw-r--r--cpp/nissy.cpp214L
-rw-r--r--cpp/nissy.h100L
-rw-r--r--doc/h48.md412L
-rw-r--r--doc/transformations.md10L
-rw-r--r--python/examples/solve.py37L
-rw-r--r--python/nissy_module.c391L
-rw-r--r--shell/shell.c705L
-rw-r--r--src/arch/arch.h41L
-rw-r--r--src/arch/avx2.h289L
-rw-r--r--src/arch/common.h78L
-rw-r--r--src/arch/neon.h362L
-rw-r--r--src/arch/portable.h279L
-rw-r--r--src/core/constants.h842L
-rw-r--r--src/core/core.h6L
-rw-r--r--src/core/core_types.h4L
-rw-r--r--src/core/cube.h363L
-rw-r--r--src/core/moves.h448L
-rw-r--r--src/core/oriented_cube.h78L
-rw-r--r--src/core/transform.h406L
-rw-r--r--src/nissy.c539L
-rw-r--r--src/nissy.h379L
-rw-r--r--src/solvers/coord/common.h191L
-rw-r--r--src/solvers/coord/coord.h9L
-rw-r--r--src/solvers/coord/dr.h120L
-rw-r--r--src/solvers/coord/dreo.h102L
-rw-r--r--src/solvers/coord/eo.h63L
-rw-r--r--src/solvers/coord/gendata.h294L
-rw-r--r--src/solvers/coord/list.h6L
-rw-r--r--src/solvers/coord/solve.h363L
-rw-r--r--src/solvers/coord/types_macros.h39L
-rw-r--r--src/solvers/coord/utils.h69L
-rw-r--r--src/solvers/h48/coordinate.h71L
-rw-r--r--src/solvers/h48/coordinate_types_macros.h7L
-rw-r--r--src/solvers/h48/gendata_cocsep.h184L
-rw-r--r--src/solvers/h48/gendata_eoesep.h280L
-rw-r--r--src/solvers/h48/gendata_h48.h839L
-rw-r--r--src/solvers/h48/gendata_types_macros.h131L
-rw-r--r--src/solvers/h48/h48.h9L
-rw-r--r--src/solvers/h48/map.h84L
-rw-r--r--src/solvers/h48/map_types_macros.h16L
-rw-r--r--src/solvers/h48/solve.h509L
-rw-r--r--src/solvers/solutions.h282L
-rw-r--r--src/solvers/solutions_types_macros.h25L
-rw-r--r--src/solvers/solvers.h6L
-rw-r--r--src/solvers/tables.h135L
-rw-r--r--src/solvers/tables_types_macros.h38L
-rw-r--r--src/utils/constants.h27L
-rw-r--r--src/utils/dbg_log.h34L
-rw-r--r--src/utils/math.h199L
-rw-r--r--src/utils/utils.h3L
-rw-r--r--test/000_basic/all.in0B
-rw-r--r--test/000_basic/all.out7L
-rw-r--r--test/000_basic/basic_tests.c33L
-rw-r--r--test/001_pieces/01_solved.in1L
-rw-r--r--test/001_pieces/01_solved.out2L
-rw-r--r--test/001_pieces/02_scrambled.in1L
-rw-r--r--test/001_pieces/02_scrambled.out2L
-rw-r--r--test/001_pieces/pieces_tests.c25L
-rw-r--r--test/010_math_permtoindex/00_noperm.in4L
-rw-r--r--test/010_math_permtoindex/00_noperm.out1L
-rw-r--r--test/010_math_permtoindex/01_toobig.in16L
-rw-r--r--test/010_math_permtoindex/01_toobig.out1L
-rw-r--r--test/010_math_permtoindex/02_offrange.in4L
-rw-r--r--test/010_math_permtoindex/02_offrange.out1L
-rw-r--r--test/010_math_permtoindex/03_2_solved.in3L
-rw-r--r--test/010_math_permtoindex/03_2_solved.out1L
-rw-r--r--test/010_math_permtoindex/04_2_swapped.in3L
-rw-r--r--test/010_math_permtoindex/04_2_swapped.out1L
-rw-r--r--test/010_math_permtoindex/05_7_solved.in8L
-rw-r--r--test/010_math_permtoindex/05_7_solved.out1L
-rw-r--r--test/010_math_permtoindex/06_7_reversed.in8L
-rw-r--r--test/010_math_permtoindex/06_7_reversed.out1L
-rw-r--r--test/010_math_permtoindex/07_4_random.in5L
-rw-r--r--test/010_math_permtoindex/07_4_random.out1L
-rw-r--r--test/010_math_permtoindex/permtoindex_tests.c19L
-rw-r--r--test/011_math_indextoperm/00_noperm.in2L
-rw-r--r--test/011_math_indextoperm/00_noperm.out3L
-rw-r--r--test/011_math_indextoperm/01_toobig.in2L
-rw-r--r--test/011_math_indextoperm/01_toobig.out15L
-rw-r--r--test/011_math_indextoperm/02_offrange.in2L
-rw-r--r--test/011_math_indextoperm/02_offrange.out3L
-rw-r--r--test/011_math_indextoperm/03_2_solved.in2L
-rw-r--r--test/011_math_indextoperm/03_2_solved.out2L
-rw-r--r--test/011_math_indextoperm/04_2_swapped.in2L
-rw-r--r--test/011_math_indextoperm/04_2_swapped.out2L
-rw-r--r--test/011_math_indextoperm/05_7_solved.in2L
-rw-r--r--test/011_math_indextoperm/05_7_solved.out7L
-rw-r--r--test/011_math_indextoperm/06_7_reversed.in2L
-rw-r--r--test/011_math_indextoperm/06_7_reversed.out7L
-rw-r--r--test/011_math_indextoperm/07_4_random.in2L
-rw-r--r--test/011_math_indextoperm/07_4_random.out4L
-rw-r--r--test/011_math_indextoperm/indextoperm_tests.c19L
-rw-r--r--test/012_math_permsign/00_solved.in8L
-rw-r--r--test/012_math_permsign/00_solved.out1L
-rw-r--r--test/012_math_permsign/01_3cycle.in6L
-rw-r--r--test/012_math_permsign/01_3cycle.out1L
-rw-r--r--test/012_math_permsign/02_22swap.in13L
-rw-r--r--test/012_math_permsign/02_22swap.out1L
-rw-r--r--test/012_math_permsign/03_singleswap.in7L
-rw-r--r--test/012_math_permsign/03_singleswap.out1L
-rw-r--r--test/012_math_permsign/04_5ycle.in11L
-rw-r--r--test/012_math_permsign/04_5ycle.out1L
-rw-r--r--test/012_math_permsign/05_6ycle.in9L
-rw-r--r--test/012_math_permsign/05_6ycle.out1L
-rw-r--r--test/012_math_permsign/permsign_tests.c21L
-rw-r--r--test/013_math_digitstosumzero/00_bad_n.in5L
-rw-r--r--test/013_math_digitstosumzero/00_bad_n.out1L
-rw-r--r--test/013_math_digitstosumzero/01_bad_b12.in14L
-rw-r--r--test/013_math_digitstosumzero/01_bad_b12.out1L
-rw-r--r--test/013_math_digitstosumzero/02_bad_b8.in10L
-rw-r--r--test/013_math_digitstosumzero/02_bad_b8.out1L
-rw-r--r--test/013_math_digitstosumzero/03_zero12.in14L
-rw-r--r--test/013_math_digitstosumzero/03_zero12.out1L
-rw-r--r--test/013_math_digitstosumzero/04_zero8.in10L
-rw-r--r--test/013_math_digitstosumzero/04_zero8.out1L
-rw-r--r--test/013_math_digitstosumzero/05_max12.in14L
-rw-r--r--test/013_math_digitstosumzero/05_max12.out1L
-rw-r--r--test/013_math_digitstosumzero/06_max8.in10L
-rw-r--r--test/013_math_digitstosumzero/06_max8.out1L
-rw-r--r--test/013_math_digitstosumzero/07_random12.in14L
-rw-r--r--test/013_math_digitstosumzero/07_random12.out1L
-rw-r--r--test/013_math_digitstosumzero/08_random8.in10L
-rw-r--r--test/013_math_digitstosumzero/08_random8.out1L
-rw-r--r--test/013_math_digitstosumzero/09_sumnonzero.in10L
-rw-r--r--test/013_math_digitstosumzero/09_sumnonzero.out1L
-rw-r--r--test/013_math_digitstosumzero/digitstosumzero_tests.c22L
-rw-r--r--test/014_math_sumzerotodigits/00_bad_n.in3L
-rw-r--r--test/014_math_sumzerotodigits/00_bad_n.out13L
-rw-r--r--test/014_math_sumzerotodigits/01_bad_b12.in3L
-rw-r--r--test/014_math_sumzerotodigits/01_bad_b12.out12L
-rw-r--r--test/014_math_sumzerotodigits/02_bad_b8.in3L
-rw-r--r--test/014_math_sumzerotodigits/02_bad_b8.out8L
-rw-r--r--test/014_math_sumzerotodigits/03_zero12.in3L
-rw-r--r--test/014_math_sumzerotodigits/03_zero12.out12L
-rw-r--r--test/014_math_sumzerotodigits/04_zero8.in3L
-rw-r--r--test/014_math_sumzerotodigits/04_zero8.out8L
-rw-r--r--test/014_math_sumzerotodigits/05_max12.in3L
-rw-r--r--test/014_math_sumzerotodigits/05_max12.out12L
-rw-r--r--test/014_math_sumzerotodigits/06_max8.in3L
-rw-r--r--test/014_math_sumzerotodigits/06_max8.out8L
-rw-r--r--test/014_math_sumzerotodigits/07_random12.in3L
-rw-r--r--test/014_math_sumzerotodigits/07_random12.out12L
-rw-r--r--test/014_math_sumzerotodigits/08_random8.in3L
-rw-r--r--test/014_math_sumzerotodigits/08_random8.out8L
-rw-r--r--test/014_math_sumzerotodigits/sumzerotodigits.c21L
-rw-r--r--test/015_math_intpow/00_1_0.in3L
-rw-r--r--test/015_math_intpow/00_1_0.out1L
-rw-r--r--test/015_math_intpow/01_x_0.in3L
-rw-r--r--test/015_math_intpow/01_x_0.out1L
-rw-r--r--test/015_math_intpow/02_3_2.in3L
-rw-r--r--test/015_math_intpow/02_3_2.out1L
-rw-r--r--test/015_math_intpow/intpow_tests.c26L
-rw-r--r--test/020_io_cube_read_write/00_garbage.in3L
-rw-r--r--test/020_io_cube_read_write/00_garbage.out1L
-rw-r--r--test/020_io_cube_read_write/01_solved_oriented.in1L
-rw-r--r--test/020_io_cube_read_write/01_solved_oriented.out1L
-rw-r--r--test/020_io_cube_read_write/02_solve_misoriented.in1L
-rw-r--r--test/020_io_cube_read_write/02_solve_misoriented.out1L
-rw-r--r--test/020_io_cube_read_write/04_unsolvable_ep.in1L
-rw-r--r--test/020_io_cube_read_write/04_unsolvable_ep.out1L
-rw-r--r--test/020_io_cube_read_write/05_unsolvable_eo.in1L
-rw-r--r--test/020_io_cube_read_write/05_unsolvable_eo.out1L
-rw-r--r--test/020_io_cube_read_write/06_unsolvable_cp.in1L
-rw-r--r--test/020_io_cube_read_write/06_unsolvable_cp.out1L
-rw-r--r--test/020_io_cube_read_write/07_unsolvable_co.in1L
-rw-r--r--test/020_io_cube_read_write/07_unsolvable_co.out1L
-rw-r--r--test/020_io_cube_read_write/08_unsolved.in1L
-rw-r--r--test/020_io_cube_read_write/08_unsolved.out1L
-rw-r--r--test/020_io_cube_read_write/io_cube_tests.c22L
-rw-r--r--test/030_applymoves/000_nomove_solved.in2L
-rw-r--r--test/030_applymoves/000_nomove_solved.out1L
-rw-r--r--test/030_applymoves/001_nomove_scrambled.in2L
-rw-r--r--test/030_applymoves/001_nomove_scrambled.out1L
-rw-r--r--test/030_applymoves/010_U_solved.in2L
-rw-r--r--test/030_applymoves/010_U_solved.out1L
-rw-r--r--test/030_applymoves/011_U_scrambled.in2L
-rw-r--r--test/030_applymoves/011_U_scrambled.out1L
-rw-r--r--test/030_applymoves/012_U_inverse.in2L
-rw-r--r--test/030_applymoves/012_U_inverse.out1L
-rw-r--r--test/030_applymoves/020_U2_solved.in2L
-rw-r--r--test/030_applymoves/020_U2_solved.out1L
-rw-r--r--test/030_applymoves/021_U2_scrambled.in2L
-rw-r--r--test/030_applymoves/021_U2_scrambled.out1L
-rw-r--r--test/030_applymoves/022_U2_inverse.in2L
-rw-r--r--test/030_applymoves/022_U2_inverse.out1L
-rw-r--r--test/030_applymoves/030_U3_solved.in2L
-rw-r--r--test/030_applymoves/030_U3_solved.out1L
-rw-r--r--test/030_applymoves/031_U3_inverse.in2L
-rw-r--r--test/030_applymoves/031_U3_inverse.out1L
-rw-r--r--test/030_applymoves/032_U3_scrambled.in2L
-rw-r--r--test/030_applymoves/032_U3_scrambled.out1L
-rw-r--r--test/030_applymoves/033_U3_with_prime.in2L
-rw-r--r--test/030_applymoves/033_U3_with_prime.out1L
-rw-r--r--test/030_applymoves/040_D_solved.in2L
-rw-r--r--test/030_applymoves/040_D_solved.out1L
-rw-r--r--test/030_applymoves/050_D2_solved.in2L
-rw-r--r--test/030_applymoves/050_D2_solved.out1L
-rw-r--r--test/030_applymoves/060_D3_solved.in2L
-rw-r--r--test/030_applymoves/060_D3_solved.out1L
-rw-r--r--test/030_applymoves/070_R_solved.in2L
-rw-r--r--test/030_applymoves/070_R_solved.out1L
-rw-r--r--test/030_applymoves/071_R_scrambled.in2L
-rw-r--r--test/030_applymoves/071_R_scrambled.out1L
-rw-r--r--test/030_applymoves/080_R2_solved.in2L
-rw-r--r--test/030_applymoves/080_R2_solved.out1L
-rw-r--r--test/030_applymoves/090_R3_solved.in2L
-rw-r--r--test/030_applymoves/090_R3_solved.out1L
-rw-r--r--test/030_applymoves/100_L_solved.in2L
-rw-r--r--test/030_applymoves/100_L_solved.out1L
-rw-r--r--test/030_applymoves/110_L2_solved.in2L
-rw-r--r--test/030_applymoves/110_L2_solved.out1L
-rw-r--r--test/030_applymoves/120_L3_solved.in2L
-rw-r--r--test/030_applymoves/120_L3_solved.out1L
-rw-r--r--test/030_applymoves/130_F_solved.in2L
-rw-r--r--test/030_applymoves/130_F_solved.out1L
-rw-r--r--test/030_applymoves/132_F_scrambled.in2L
-rw-r--r--test/030_applymoves/132_F_scrambled.out1L
-rw-r--r--test/030_applymoves/133_F_scrambled_2.in2L
-rw-r--r--test/030_applymoves/133_F_scrambled_2.out1L
-rw-r--r--test/030_applymoves/140_F2_solved.in2L
-rw-r--r--test/030_applymoves/140_F2_solved.out1L
-rw-r--r--test/030_applymoves/150_F3_solved.in2L
-rw-r--r--test/030_applymoves/150_F3_solved.out1L
-rw-r--r--test/030_applymoves/160_B_solved.in2L
-rw-r--r--test/030_applymoves/160_B_solved.out1L
-rw-r--r--test/030_applymoves/170_B2_solved.in2L
-rw-r--r--test/030_applymoves/170_B2_solved.out1L
-rw-r--r--test/030_applymoves/180_B3_solved.in2L
-rw-r--r--test/030_applymoves/180_B3_solved.out1L
-rw-r--r--test/030_applymoves/200_scramble_solved.in2L
-rw-r--r--test/030_applymoves/200_scramble_solved.out1L
-rw-r--r--test/030_applymoves/201_solution_scrambled.in2L
-rw-r--r--test/030_applymoves/201_solution_scrambled.out1L
-rw-r--r--test/030_applymoves/300_multimove_solved.in2L
-rw-r--r--test/030_applymoves/300_multimove_solved.out1L
-rw-r--r--test/030_applymoves/301_multimove_scrambled.in2L
-rw-r--r--test/030_applymoves/301_multimove_scrambled.out1L
-rw-r--r--test/030_applymoves/500_Uw_solved.in2L
-rw-r--r--test/030_applymoves/500_Uw_solved.out1L
-rw-r--r--test/030_applymoves/501_Uw2_solved.in2L
-rw-r--r--test/030_applymoves/501_Uw2_solved.out1L
-rw-r--r--test/030_applymoves/502_Uw3_solved.in2L
-rw-r--r--test/030_applymoves/502_Uw3_solved.out1L
-rw-r--r--test/030_applymoves/503_Dw_solved.in2L
-rw-r--r--test/030_applymoves/503_Dw_solved.out1L
-rw-r--r--test/030_applymoves/504_Dw2_solved.in2L
-rw-r--r--test/030_applymoves/504_Dw2_solved.out1L
-rw-r--r--test/030_applymoves/505_Dw3_solved.in2L
-rw-r--r--test/030_applymoves/505_Dw3_solved.out1L
-rw-r--r--test/030_applymoves/506_Rw_solved.in2L
-rw-r--r--test/030_applymoves/506_Rw_solved.out1L
-rw-r--r--test/030_applymoves/507_Rw2_solved.in2L
-rw-r--r--test/030_applymoves/507_Rw2_solved.out1L
-rw-r--r--test/030_applymoves/508_Rw3_solved.in2L
-rw-r--r--test/030_applymoves/508_Rw3_solved.out1L
-rw-r--r--test/030_applymoves/509_Lw_solved.in2L
-rw-r--r--test/030_applymoves/509_Lw_solved.out1L
-rw-r--r--test/030_applymoves/510_Lw2_solved.in2L
-rw-r--r--test/030_applymoves/510_Lw2_solved.out1L
-rw-r--r--test/030_applymoves/511_Lw3_solved.in2L
-rw-r--r--test/030_applymoves/511_Lw3_solved.out1L
-rw-r--r--test/030_applymoves/512_Fw_solved.in2L
-rw-r--r--test/030_applymoves/512_Fw_solved.out1L
-rw-r--r--test/030_applymoves/513_Fw2_solved.in2L
-rw-r--r--test/030_applymoves/513_Fw2_solved.out1L
-rw-r--r--test/030_applymoves/514_Fw3_solved.in2L
-rw-r--r--test/030_applymoves/514_Fw3_solved.out1L
-rw-r--r--test/030_applymoves/515_Bw_solved.in2L
-rw-r--r--test/030_applymoves/515_Bw_solved.out1L
-rw-r--r--test/030_applymoves/516_Bw2_solved.in2L
-rw-r--r--test/030_applymoves/516_Bw2_solved.out1L
-rw-r--r--test/030_applymoves/517_Bw3_solved.in2L
-rw-r--r--test/030_applymoves/517_Bw3_solved.out1L
-rw-r--r--test/030_applymoves/518_M_solved.in2L
-rw-r--r--test/030_applymoves/518_M_solved.out1L
-rw-r--r--test/030_applymoves/519_M2_solved.in2L
-rw-r--r--test/030_applymoves/519_M2_solved.out1L
-rw-r--r--test/030_applymoves/520_M3_solved.in2L
-rw-r--r--test/030_applymoves/520_M3_solved.out1L
-rw-r--r--test/030_applymoves/521_S_solved.in2L
-rw-r--r--test/030_applymoves/521_S_solved.out1L
-rw-r--r--test/030_applymoves/522_S2_solved.in2L
-rw-r--r--test/030_applymoves/522_S2_solved.out1L
-rw-r--r--test/030_applymoves/523_S3_solved.in2L
-rw-r--r--test/030_applymoves/523_S3_solved.out1L
-rw-r--r--test/030_applymoves/524_E_solved.in2L
-rw-r--r--test/030_applymoves/524_E_solved.out1L
-rw-r--r--test/030_applymoves/525_E2_solved.in2L
-rw-r--r--test/030_applymoves/525_E2_solved.out1L
-rw-r--r--test/030_applymoves/526_E3_solved.in2L
-rw-r--r--test/030_applymoves/526_E3_solved.out1L
-rw-r--r--test/030_applymoves/527_x_solved.in2L
-rw-r--r--test/030_applymoves/527_x_solved.out1L
-rw-r--r--test/030_applymoves/528_x2_solved.in2L
-rw-r--r--test/030_applymoves/528_x2_solved.out1L
-rw-r--r--test/030_applymoves/529_x3_solved.in2L
-rw-r--r--test/030_applymoves/529_x3_solved.out1L
-rw-r--r--test/030_applymoves/530_y_solved.in2L
-rw-r--r--test/030_applymoves/530_y_solved.out1L
-rw-r--r--test/030_applymoves/531_y2_solved.in2L
-rw-r--r--test/030_applymoves/531_y2_solved.out1L
-rw-r--r--test/030_applymoves/532_y3_solved.in2L
-rw-r--r--test/030_applymoves/532_y3_solved.out1L
-rw-r--r--test/030_applymoves/533_z_solved.in2L
-rw-r--r--test/030_applymoves/533_z_solved.out1L
-rw-r--r--test/030_applymoves/534_z2_solved.in2L
-rw-r--r--test/030_applymoves/534_z2_solved.out1L
-rw-r--r--test/030_applymoves/535_z3_solved.in2L
-rw-r--r--test/030_applymoves/535_z3_solved.out1L
-rw-r--r--test/030_applymoves/550_scrambled_random.in2L
-rw-r--r--test/030_applymoves/550_scrambled_random.out1L
-rw-r--r--test/030_applymoves/559_solved_xzy.in2L
-rw-r--r--test/030_applymoves/559_solved_xzy.out1L
-rw-r--r--test/030_applymoves/560_solved_RwS.in2L
-rw-r--r--test/030_applymoves/560_solved_RwS.out1L
-rw-r--r--test/030_applymoves/561_solved_RwSE3.in2L
-rw-r--r--test/030_applymoves/561_solved_RwSE3.out1L
-rw-r--r--test/030_applymoves/569_returns_to_noreorient.in2L
-rw-r--r--test/030_applymoves/569_returns_to_noreorient.out1L
-rw-r--r--test/030_applymoves/600_niss_solved.in2L
-rw-r--r--test/030_applymoves/600_niss_solved.out1L
-rw-r--r--test/030_applymoves/601_niss_solved_widenormal.in2L
-rw-r--r--test/030_applymoves/601_niss_solved_widenormal.out1L
-rw-r--r--test/030_applymoves/602_scrambled_niss_1x3.in2L
-rw-r--r--test/030_applymoves/602_scrambled_niss_1x3.out1L
-rw-r--r--test/030_applymoves/603_scrambled_long_niss.in3L
-rw-r--r--test/030_applymoves/603_scrambled_long_niss.out1L
-rw-r--r--test/030_applymoves/604_scrambled_niss_extendedmoves.in3L
-rw-r--r--test/030_applymoves/604_scrambled_niss_extendedmoves.out1L
-rw-r--r--test/030_applymoves/applymoves_tests.c23L
-rw-r--r--test/031_premove/001_U_solved.in2L
-rw-r--r--test/031_premove/001_U_solved.out1L
-rw-r--r--test/031_premove/002_U_scrambled.in4L
-rw-r--r--test/031_premove/002_U_scrambled.out1L
-rw-r--r--test/031_premove/003_F3_scrambled.in4L
-rw-r--r--test/031_premove/003_F3_scrambled.out1L
-rw-r--r--test/031_premove/premove_tests.c27L
-rw-r--r--test/032_countmoves/00_empty.in1L
-rw-r--r--test/032_countmoves/00_empty.out1L
-rw-r--r--test/032_countmoves/01_U.in1L
-rw-r--r--test/032_countmoves/01_U.out1L
-rw-r--r--test/032_countmoves/02_Fw3.in1L
-rw-r--r--test/032_countmoves/02_Fw3.out1L
-rw-r--r--test/032_countmoves/03_S2.in1L
-rw-r--r--test/032_countmoves/03_S2.out1L
-rw-r--r--test/032_countmoves/04_y3.in1L
-rw-r--r--test/032_countmoves/04_y3.out1L
-rw-r--r--test/032_countmoves/05_niss.in1L
-rw-r--r--test/032_countmoves/05_niss.out1L
-rw-r--r--test/032_countmoves/countmoves_tests.c11L
-rw-r--r--test/033_inverse_move/00_U.in1L
-rw-r--r--test/033_inverse_move/00_U.out1L
-rw-r--r--test/033_inverse_move/01_U2.in1L
-rw-r--r--test/033_inverse_move/01_U2.out1L
-rw-r--r--test/033_inverse_move/02_U3.in1L
-rw-r--r--test/033_inverse_move/02_U3.out1L
-rw-r--r--test/033_inverse_move/03_F.in1L
-rw-r--r--test/033_inverse_move/03_F.out1L
-rw-r--r--test/033_inverse_move/04_Uw.in1L
-rw-r--r--test/033_inverse_move/04_Uw.out1L
-rw-r--r--test/033_inverse_move/05_Rw2.in1L
-rw-r--r--test/033_inverse_move/05_Rw2.out1L
-rw-r--r--test/033_inverse_move/06_Bw3.in1L
-rw-r--r--test/033_inverse_move/06_Bw3.out1L
-rw-r--r--test/033_inverse_move/07_M.in1L
-rw-r--r--test/033_inverse_move/07_M.out1L
-rw-r--r--test/033_inverse_move/08_S2.in1L
-rw-r--r--test/033_inverse_move/08_S2.out1L
-rw-r--r--test/033_inverse_move/09_S3.in1L
-rw-r--r--test/033_inverse_move/09_S3.out1L
-rw-r--r--test/033_inverse_move/10_x3.in1L
-rw-r--r--test/033_inverse_move/10_x3.out1L
-rw-r--r--test/033_inverse_move/11_z2.in1L
-rw-r--r--test/033_inverse_move/11_z2.out1L
-rw-r--r--test/033_inverse_move/inverse_move_tests.c26L
-rw-r--r--test/040_inverse_cube/00_solved.in1L
-rw-r--r--test/040_inverse_cube/00_solved.out1L
-rw-r--r--test/040_inverse_cube/01_scrambled.in1L
-rw-r--r--test/040_inverse_cube/01_scrambled.out1L
-rw-r--r--test/040_inverse_cube/inverse_tests.c24L
-rw-r--r--test/050_compose/00_solved_solved.in2L
-rw-r--r--test/050_compose/00_solved_solved.out1L
-rw-r--r--test/050_compose/01_solved_U.in2L
-rw-r--r--test/050_compose/01_solved_U.out1L
-rw-r--r--test/050_compose/02_solved_scrambled.in2L
-rw-r--r--test/050_compose/02_solved_scrambled.out1L
-rw-r--r--test/050_compose/11_U_solved.in2L
-rw-r--r--test/050_compose/11_U_solved.out1L
-rw-r--r--test/050_compose/12_scrambled_solved.in2L
-rw-r--r--test/050_compose/12_scrambled_solved.out1L
-rw-r--r--test/050_compose/20_U_U.in2L
-rw-r--r--test/050_compose/20_U_U.out1L
-rw-r--r--test/050_compose/21_U_Uinverse.in2L
-rw-r--r--test/050_compose/21_U_Uinverse.out1L
-rw-r--r--test/050_compose/22_F_Finverse.in2L
-rw-r--r--test/050_compose/22_F_Finverse.out1L
-rw-r--r--test/050_compose/23_F2_F2.in2L
-rw-r--r--test/050_compose/23_F2_F2.out1L
-rw-r--r--test/050_compose/24_U_F.in2L
-rw-r--r--test/050_compose/24_U_F.out1L
-rw-r--r--test/050_compose/25_F_R.in2L
-rw-r--r--test/050_compose/25_F_R.out1L
-rw-r--r--test/050_compose/30_scrambled_inverse.in4L
-rw-r--r--test/050_compose/30_scrambled_inverse.out1L
-rw-r--r--test/050_compose/31_scrambled_scrambled.in4L
-rw-r--r--test/050_compose/31_scrambled_scrambled.out1L
-rw-r--r--test/050_compose/compose_tests.c27L
-rw-r--r--test/051_compose_oriented/00_scrambled_noorient.in4L
-rw-r--r--test/051_compose_oriented/00_scrambled_noorient.out1L
-rw-r--r--test/051_compose_oriented/01_Uw_Fw.in2L
-rw-r--r--test/051_compose_oriented/01_Uw_Fw.out1L
-rw-r--r--test/051_compose_oriented/02_scrambled_scrambled.in4L
-rw-r--r--test/051_compose_oriented/02_scrambled_scrambled.out1L
-rw-r--r--test/051_compose_oriented/compose_oriented_tests.c24L
-rw-r--r--test/060_transform/000_solved_UFr.in2L
-rw-r--r--test/060_transform/000_solved_UFr.out1L
-rw-r--r--test/060_transform/001_solved_BLm.in2L
-rw-r--r--test/060_transform/001_solved_BLm.out1L
-rw-r--r--test/060_transform/100_UFr_U.in2L
-rw-r--r--test/060_transform/100_UFr_U.out1L
-rw-r--r--test/060_transform/101_UFm_U.in2L
-rw-r--r--test/060_transform/101_UFm_U.out1L
-rw-r--r--test/060_transform/102_UFr_R.in2L
-rw-r--r--test/060_transform/102_UFr_R.out1L
-rw-r--r--test/060_transform/103_UFm_R.in2L
-rw-r--r--test/060_transform/103_UFm_R.out1L
-rw-r--r--test/060_transform/104_UFr_F.in2L
-rw-r--r--test/060_transform/104_UFr_F.out1L
-rw-r--r--test/060_transform/105_UFm_F.in2L
-rw-r--r--test/060_transform/105_UFm_F.out1L
-rw-r--r--test/060_transform/106_ULr_U.in2L
-rw-r--r--test/060_transform/106_ULr_U.out1L
-rw-r--r--test/060_transform/107_ULm_U.in2L
-rw-r--r--test/060_transform/107_ULm_U.out1L
-rw-r--r--test/060_transform/108_ULr_R.in2L
-rw-r--r--test/060_transform/108_ULr_R.out1L
-rw-r--r--test/060_transform/109_ULm_R.in2L
-rw-r--r--test/060_transform/109_ULm_R.out1L
-rw-r--r--test/060_transform/110_ULr_F.in2L
-rw-r--r--test/060_transform/110_ULr_F.out1L
-rw-r--r--test/060_transform/111_ULm_F.in2L
-rw-r--r--test/060_transform/111_ULm_F.out1L
-rw-r--r--test/060_transform/112_UBr_U.in2L
-rw-r--r--test/060_transform/112_UBr_U.out1L
-rw-r--r--test/060_transform/113_UBm_U.in2L
-rw-r--r--test/060_transform/113_UBm_U.out1L
-rw-r--r--test/060_transform/114_UBr_R.in2L
-rw-r--r--test/060_transform/114_UBr_R.out1L
-rw-r--r--test/060_transform/115_UBm_R.in2L
-rw-r--r--test/060_transform/115_UBm_R.out1L
-rw-r--r--test/060_transform/116_UBr_F.in2L
-rw-r--r--test/060_transform/116_UBr_F.out1L
-rw-r--r--test/060_transform/117_UBm_F.in2L
-rw-r--r--test/060_transform/117_UBm_F.out1L
-rw-r--r--test/060_transform/118_URr_U.in2L
-rw-r--r--test/060_transform/118_URr_U.out1L
-rw-r--r--test/060_transform/119_URm_U.in2L
-rw-r--r--test/060_transform/119_URm_U.out1L
-rw-r--r--test/060_transform/120_URr_R.in2L
-rw-r--r--test/060_transform/120_URr_R.out1L
-rw-r--r--test/060_transform/121_URm_R.in2L
-rw-r--r--test/060_transform/121_URm_R.out1L
-rw-r--r--test/060_transform/122_URr_F.in2L
-rw-r--r--test/060_transform/122_URr_F.out1L
-rw-r--r--test/060_transform/123_URm_F.in2L
-rw-r--r--test/060_transform/123_URm_F.out1L
-rw-r--r--test/060_transform/124_DFr_U.in2L
-rw-r--r--test/060_transform/124_DFr_U.out1L
-rw-r--r--test/060_transform/125_DFm_U.in2L
-rw-r--r--test/060_transform/125_DFm_U.out1L
-rw-r--r--test/060_transform/126_DFr_R.in2L
-rw-r--r--test/060_transform/126_DFr_R.out1L
-rw-r--r--test/060_transform/127_DFm_R.in2L
-rw-r--r--test/060_transform/127_DFm_R.out1L
-rw-r--r--test/060_transform/128_DFr_F.in2L
-rw-r--r--test/060_transform/128_DFr_F.out1L
-rw-r--r--test/060_transform/129_DFm_F.in2L
-rw-r--r--test/060_transform/129_DFm_F.out1L
-rw-r--r--test/060_transform/130_DLr_U.in2L
-rw-r--r--test/060_transform/130_DLr_U.out1L
-rw-r--r--test/060_transform/131_DLm_U.in2L
-rw-r--r--test/060_transform/131_DLm_U.out1L
-rw-r--r--test/060_transform/132_DLr_R.in2L
-rw-r--r--test/060_transform/132_DLr_R.out1L
-rw-r--r--test/060_transform/133_DLm_R.in2L
-rw-r--r--test/060_transform/133_DLm_R.out1L
-rw-r--r--test/060_transform/134_DLr_F.in2L
-rw-r--r--test/060_transform/134_DLr_F.out1L
-rw-r--r--test/060_transform/135_DLm_F.in2L
-rw-r--r--test/060_transform/135_DLm_F.out1L
-rw-r--r--test/060_transform/136_DBr_U.in2L
-rw-r--r--test/060_transform/136_DBr_U.out1L
-rw-r--r--test/060_transform/137_DBm_U.in2L
-rw-r--r--test/060_transform/137_DBm_U.out1L
-rw-r--r--test/060_transform/138_DBr_R.in2L
-rw-r--r--test/060_transform/138_DBr_R.out1L
-rw-r--r--test/060_transform/139_DBm_R.in2L
-rw-r--r--test/060_transform/139_DBm_R.out1L
-rw-r--r--test/060_transform/140_DBr_F.in2L
-rw-r--r--test/060_transform/140_DBr_F.out1L
-rw-r--r--test/060_transform/141_DBm_F.in2L
-rw-r--r--test/060_transform/141_DBm_F.out1L
-rw-r--r--test/060_transform/142_DRr_U.in2L
-rw-r--r--test/060_transform/142_DRr_U.out1L
-rw-r--r--test/060_transform/143_DRm_U.in2L
-rw-r--r--test/060_transform/143_DRm_U.out1L
-rw-r--r--test/060_transform/144_DRr_R.in2L
-rw-r--r--test/060_transform/144_DRr_R.out1L
-rw-r--r--test/060_transform/145_DRm_R.in2L
-rw-r--r--test/060_transform/145_DRm_R.out1L
-rw-r--r--test/060_transform/146_DRr_F.in2L
-rw-r--r--test/060_transform/146_DRr_F.out1L
-rw-r--r--test/060_transform/147_DRm_F.in2L
-rw-r--r--test/060_transform/147_DRm_F.out1L
-rw-r--r--test/060_transform/148_RUr_U.in2L
-rw-r--r--test/060_transform/148_RUr_U.out1L
-rw-r--r--test/060_transform/149_RUm_U.in2L
-rw-r--r--test/060_transform/149_RUm_U.out1L
-rw-r--r--test/060_transform/150_RUr_R.in2L
-rw-r--r--test/060_transform/150_RUr_R.out1L
-rw-r--r--test/060_transform/151_RUm_R.in2L
-rw-r--r--test/060_transform/151_RUm_R.out1L
-rw-r--r--test/060_transform/152_RUr_F.in2L
-rw-r--r--test/060_transform/152_RUr_F.out1L
-rw-r--r--test/060_transform/153_RUm_F.in2L
-rw-r--r--test/060_transform/153_RUm_F.out1L
-rw-r--r--test/060_transform/154_RFr_U.in2L
-rw-r--r--test/060_transform/154_RFr_U.out1L
-rw-r--r--test/060_transform/155_RFm_U.in2L
-rw-r--r--test/060_transform/155_RFm_U.out1L
-rw-r--r--test/060_transform/156_RFr_R.in2L
-rw-r--r--test/060_transform/156_RFr_R.out1L
-rw-r--r--test/060_transform/157_RFm_R.in2L
-rw-r--r--test/060_transform/157_RFm_R.out1L
-rw-r--r--test/060_transform/158_RFr_F.in2L
-rw-r--r--test/060_transform/158_RFr_F.out1L
-rw-r--r--test/060_transform/159_RFm_F.in2L
-rw-r--r--test/060_transform/159_RFm_F.out1L
-rw-r--r--test/060_transform/160_RDr_U.in2L
-rw-r--r--test/060_transform/160_RDr_U.out1L
-rw-r--r--test/060_transform/161_RDm_U.in2L
-rw-r--r--test/060_transform/161_RDm_U.out1L
-rw-r--r--test/060_transform/162_RDr_R.in2L
-rw-r--r--test/060_transform/162_RDr_R.out1L
-rw-r--r--test/060_transform/163_RDm_R.in2L
-rw-r--r--test/060_transform/163_RDm_R.out1L
-rw-r--r--test/060_transform/164_RDr_F.in2L
-rw-r--r--test/060_transform/164_RDr_F.out1L
-rw-r--r--test/060_transform/165_RDm_F.in2L
-rw-r--r--test/060_transform/165_RDm_F.out1L
-rw-r--r--test/060_transform/166_RBr_U.in2L
-rw-r--r--test/060_transform/166_RBr_U.out1L
-rw-r--r--test/060_transform/167_RBm_U.in2L
-rw-r--r--test/060_transform/167_RBm_U.out1L
-rw-r--r--test/060_transform/168_RBr_R.in2L
-rw-r--r--test/060_transform/168_RBr_R.out1L
-rw-r--r--test/060_transform/169_RBm_R.in2L
-rw-r--r--test/060_transform/169_RBm_R.out1L
-rw-r--r--test/060_transform/170_RBr_F.in2L
-rw-r--r--test/060_transform/170_RBr_F.out1L
-rw-r--r--test/060_transform/171_RBm_F.in2L
-rw-r--r--test/060_transform/171_RBm_F.out1L
-rw-r--r--test/060_transform/172_LUr_U.in2L
-rw-r--r--test/060_transform/172_LUr_U.out1L
-rw-r--r--test/060_transform/173_LUm_U.in2L
-rw-r--r--test/060_transform/173_LUm_U.out1L
-rw-r--r--test/060_transform/174_LUr_R.in2L
-rw-r--r--test/060_transform/174_LUr_R.out1L
-rw-r--r--test/060_transform/175_LUm_R.in2L
-rw-r--r--test/060_transform/175_LUm_R.out1L
-rw-r--r--test/060_transform/176_LUr_F.in2L
-rw-r--r--test/060_transform/176_LUr_F.out1L
-rw-r--r--test/060_transform/177_LUm_F.in2L
-rw-r--r--test/060_transform/177_LUm_F.out1L
-rw-r--r--test/060_transform/178_LFr_U.in2L
-rw-r--r--test/060_transform/178_LFr_U.out1L
-rw-r--r--test/060_transform/179_LFm_U.in2L
-rw-r--r--test/060_transform/179_LFm_U.out1L
-rw-r--r--test/060_transform/180_LFr_R.in2L
-rw-r--r--test/060_transform/180_LFr_R.out1L
-rw-r--r--test/060_transform/181_LFm_R.in2L
-rw-r--r--test/060_transform/181_LFm_R.out1L
-rw-r--r--test/060_transform/182_LFr_F.in2L
-rw-r--r--test/060_transform/182_LFr_F.out1L
-rw-r--r--test/060_transform/183_LFm_F.in2L
-rw-r--r--test/060_transform/183_LFm_F.out1L
-rw-r--r--test/060_transform/184_LDr_U.in2L
-rw-r--r--test/060_transform/184_LDr_U.out1L
-rw-r--r--test/060_transform/185_LDm_U.in2L
-rw-r--r--test/060_transform/185_LDm_U.out1L
-rw-r--r--test/060_transform/186_LDr_R.in2L
-rw-r--r--test/060_transform/186_LDr_R.out1L
-rw-r--r--test/060_transform/187_LDm_R.in2L
-rw-r--r--test/060_transform/187_LDm_R.out1L
-rw-r--r--test/060_transform/188_LDr_F.in2L
-rw-r--r--test/060_transform/188_LDr_F.out1L
-rw-r--r--test/060_transform/189_LDm_F.in2L
-rw-r--r--test/060_transform/189_LDm_F.out1L
-rw-r--r--test/060_transform/190_LBr_U.in2L
-rw-r--r--test/060_transform/190_LBr_U.out1L
-rw-r--r--test/060_transform/191_LBm_U.in2L
-rw-r--r--test/060_transform/191_LBm_U.out1L
-rw-r--r--test/060_transform/192_LBr_R.in2L
-rw-r--r--test/060_transform/192_LBr_R.out1L
-rw-r--r--test/060_transform/193_LBm_R.in2L
-rw-r--r--test/060_transform/193_LBm_R.out1L
-rw-r--r--test/060_transform/194_LBr_F.in2L
-rw-r--r--test/060_transform/194_LBr_F.out1L
-rw-r--r--test/060_transform/195_LBm_F.in2L
-rw-r--r--test/060_transform/195_LBm_F.out1L
-rw-r--r--test/060_transform/196_FUr_U.in2L
-rw-r--r--test/060_transform/196_FUr_U.out1L
-rw-r--r--test/060_transform/197_FUm_U.in2L
-rw-r--r--test/060_transform/197_FUm_U.out1L
-rw-r--r--test/060_transform/198_FUr_R.in2L
-rw-r--r--test/060_transform/198_FUr_R.out1L
-rw-r--r--test/060_transform/199_FUm_R.in2L
-rw-r--r--test/060_transform/199_FUm_R.out1L
-rw-r--r--test/060_transform/200_FUr_F.in2L
-rw-r--r--test/060_transform/200_FUr_F.out1L
-rw-r--r--test/060_transform/201_FUm_F.in2L
-rw-r--r--test/060_transform/201_FUm_F.out1L
-rw-r--r--test/060_transform/202_FRr_U.in2L
-rw-r--r--test/060_transform/202_FRr_U.out1L
-rw-r--r--test/060_transform/203_FRm_U.in2L
-rw-r--r--test/060_transform/203_FRm_U.out1L
-rw-r--r--test/060_transform/204_FRr_R.in2L
-rw-r--r--test/060_transform/204_FRr_R.out1L
-rw-r--r--test/060_transform/205_FRm_R.in2L
-rw-r--r--test/060_transform/205_FRm_R.out1L
-rw-r--r--test/060_transform/206_FRr_F.in2L
-rw-r--r--test/060_transform/206_FRr_F.out1L
-rw-r--r--test/060_transform/207_FRm_F.in2L
-rw-r--r--test/060_transform/207_FRm_F.out1L
-rw-r--r--test/060_transform/208_FDr_U.in2L
-rw-r--r--test/060_transform/208_FDr_U.out1L
-rw-r--r--test/060_transform/209_FDm_U.in2L
-rw-r--r--test/060_transform/209_FDm_U.out1L
-rw-r--r--test/060_transform/210_FDr_R.in2L
-rw-r--r--test/060_transform/210_FDr_R.out1L
-rw-r--r--test/060_transform/211_FDm_R.in2L
-rw-r--r--test/060_transform/211_FDm_R.out1L
-rw-r--r--test/060_transform/212_FDr_F.in2L
-rw-r--r--test/060_transform/212_FDr_F.out1L
-rw-r--r--test/060_transform/213_FDm_F.in2L
-rw-r--r--test/060_transform/213_FDm_F.out1L
-rw-r--r--test/060_transform/214_FLr_U.in2L
-rw-r--r--test/060_transform/214_FLr_U.out1L
-rw-r--r--test/060_transform/215_FLm_U.in2L
-rw-r--r--test/060_transform/215_FLm_U.out1L
-rw-r--r--test/060_transform/216_FLr_R.in2L
-rw-r--r--test/060_transform/216_FLr_R.out1L
-rw-r--r--test/060_transform/217_FLm_R.in2L
-rw-r--r--test/060_transform/217_FLm_R.out1L
-rw-r--r--test/060_transform/218_FLr_F.in2L
-rw-r--r--test/060_transform/218_FLr_F.out1L
-rw-r--r--test/060_transform/219_FLm_F.in2L
-rw-r--r--test/060_transform/219_FLm_F.out1L
-rw-r--r--test/060_transform/220_BUr_U.in2L
-rw-r--r--test/060_transform/220_BUr_U.out1L
-rw-r--r--test/060_transform/221_BUm_U.in2L
-rw-r--r--test/060_transform/221_BUm_U.out1L
-rw-r--r--test/060_transform/222_BUr_R.in2L
-rw-r--r--test/060_transform/222_BUr_R.out1L
-rw-r--r--test/060_transform/223_BUm_R.in2L
-rw-r--r--test/060_transform/223_BUm_R.out1L
-rw-r--r--test/060_transform/224_BUr_F.in2L
-rw-r--r--test/060_transform/224_BUr_F.out1L
-rw-r--r--test/060_transform/225_BUm_F.in2L
-rw-r--r--test/060_transform/225_BUm_F.out1L
-rw-r--r--test/060_transform/226_BRr_U.in2L
-rw-r--r--test/060_transform/226_BRr_U.out1L
-rw-r--r--test/060_transform/227_BRm_U.in2L
-rw-r--r--test/060_transform/227_BRm_U.out1L
-rw-r--r--test/060_transform/228_BRr_R.in2L
-rw-r--r--test/060_transform/228_BRr_R.out1L
-rw-r--r--test/060_transform/229_BRm_R.in2L
-rw-r--r--test/060_transform/229_BRm_R.out1L
-rw-r--r--test/060_transform/230_BRr_F.in2L
-rw-r--r--test/060_transform/230_BRr_F.out1L
-rw-r--r--test/060_transform/231_BRm_F.in2L
-rw-r--r--test/060_transform/231_BRm_F.out1L
-rw-r--r--test/060_transform/232_BDr_U.in2L
-rw-r--r--test/060_transform/232_BDr_U.out1L
-rw-r--r--test/060_transform/233_BDm_U.in2L
-rw-r--r--test/060_transform/233_BDm_U.out1L
-rw-r--r--test/060_transform/234_BDr_R.in2L
-rw-r--r--test/060_transform/234_BDr_R.out1L
-rw-r--r--test/060_transform/235_BDm_R.in2L
-rw-r--r--test/060_transform/235_BDm_R.out1L
-rw-r--r--test/060_transform/236_BDr_F.in2L
-rw-r--r--test/060_transform/236_BDr_F.out1L
-rw-r--r--test/060_transform/237_BDm_F.in2L
-rw-r--r--test/060_transform/237_BDm_F.out1L
-rw-r--r--test/060_transform/238_BLr_U.in2L
-rw-r--r--test/060_transform/238_BLr_U.out1L
-rw-r--r--test/060_transform/239_BLm_U.in2L
-rw-r--r--test/060_transform/239_BLm_U.out1L
-rw-r--r--test/060_transform/240_BLr_R.in2L
-rw-r--r--test/060_transform/240_BLr_R.out1L
-rw-r--r--test/060_transform/241_BLm_R.in2L
-rw-r--r--test/060_transform/241_BLm_R.out1L
-rw-r--r--test/060_transform/242_BLr_F.in2L
-rw-r--r--test/060_transform/242_BLr_F.out1L
-rw-r--r--test/060_transform/243_BLm_F.in2L
-rw-r--r--test/060_transform/243_BLm_F.out1L
-rw-r--r--test/060_transform/transform_tests.c23L
-rw-r--r--test/061_inverse_trans/00_all.in0B
-rw-r--r--test/061_inverse_trans/00_all.out0B
-rw-r--r--test/061_inverse_trans/inverse_trans_tests.c36L
-rw-r--r--test/062_transform_move/100_UFr_U.in2L
-rw-r--r--test/062_transform_move/100_UFr_U.out1L
-rw-r--r--test/062_transform_move/101_UFm_U.in2L
-rw-r--r--test/062_transform_move/101_UFm_U.out1L
-rw-r--r--test/062_transform_move/102_UFr_R.in2L
-rw-r--r--test/062_transform_move/102_UFr_R.out1L
-rw-r--r--test/062_transform_move/103_UFm_R.in2L
-rw-r--r--test/062_transform_move/103_UFm_R.out1L
-rw-r--r--test/062_transform_move/104_UFr_F.in2L
-rw-r--r--test/062_transform_move/104_UFr_F.out1L
-rw-r--r--test/062_transform_move/105_UFm_F.in2L
-rw-r--r--test/062_transform_move/105_UFm_F.out1L
-rw-r--r--test/062_transform_move/106_ULr_U.in2L
-rw-r--r--test/062_transform_move/106_ULr_U.out1L
-rw-r--r--test/062_transform_move/107_ULm_U.in2L
-rw-r--r--test/062_transform_move/107_ULm_U.out1L
-rw-r--r--test/062_transform_move/108_ULr_R.in2L
-rw-r--r--test/062_transform_move/108_ULr_R.out1L
-rw-r--r--test/062_transform_move/109_ULm_R.in2L
-rw-r--r--test/062_transform_move/109_ULm_R.out1L
-rw-r--r--test/062_transform_move/110_ULr_F.in2L
-rw-r--r--test/062_transform_move/110_ULr_F.out1L
-rw-r--r--test/062_transform_move/111_ULm_F.in2L
-rw-r--r--test/062_transform_move/111_ULm_F.out1L
-rw-r--r--test/062_transform_move/112_UBr_U.in2L
-rw-r--r--test/062_transform_move/112_UBr_U.out1L
-rw-r--r--test/062_transform_move/113_UBm_U.in2L
-rw-r--r--test/062_transform_move/113_UBm_U.out1L
-rw-r--r--test/062_transform_move/114_UBr_R.in2L
-rw-r--r--test/062_transform_move/114_UBr_R.out1L
-rw-r--r--test/062_transform_move/115_UBm_R.in2L
-rw-r--r--test/062_transform_move/115_UBm_R.out1L
-rw-r--r--test/062_transform_move/116_UBr_F.in2L
-rw-r--r--test/062_transform_move/116_UBr_F.out1L
-rw-r--r--test/062_transform_move/117_UBm_F.in2L
-rw-r--r--test/062_transform_move/117_UBm_F.out1L
-rw-r--r--test/062_transform_move/118_URr_U.in2L
-rw-r--r--test/062_transform_move/118_URr_U.out1L
-rw-r--r--test/062_transform_move/119_URm_U.in2L
-rw-r--r--test/062_transform_move/119_URm_U.out1L
-rw-r--r--test/062_transform_move/120_URr_R.in2L
-rw-r--r--test/062_transform_move/120_URr_R.out1L
-rw-r--r--test/062_transform_move/121_URm_R.in2L
-rw-r--r--test/062_transform_move/121_URm_R.out1L
-rw-r--r--test/062_transform_move/122_URr_F.in2L
-rw-r--r--test/062_transform_move/122_URr_F.out1L
-rw-r--r--test/062_transform_move/123_URm_F.in2L
-rw-r--r--test/062_transform_move/123_URm_F.out1L
-rw-r--r--test/062_transform_move/124_DFr_U.in2L
-rw-r--r--test/062_transform_move/124_DFr_U.out1L
-rw-r--r--test/062_transform_move/125_DFm_U.in2L
-rw-r--r--test/062_transform_move/125_DFm_U.out1L
-rw-r--r--test/062_transform_move/126_DFr_R.in2L
-rw-r--r--test/062_transform_move/126_DFr_R.out1L
-rw-r--r--test/062_transform_move/127_DFm_R.in2L
-rw-r--r--test/062_transform_move/127_DFm_R.out1L
-rw-r--r--test/062_transform_move/128_DFr_F.in2L
-rw-r--r--test/062_transform_move/128_DFr_F.out1L
-rw-r--r--test/062_transform_move/129_DFm_F.in2L
-rw-r--r--test/062_transform_move/129_DFm_F.out1L
-rw-r--r--test/062_transform_move/130_DLr_U.in2L
-rw-r--r--test/062_transform_move/130_DLr_U.out1L
-rw-r--r--test/062_transform_move/131_DLm_U.in2L
-rw-r--r--test/062_transform_move/131_DLm_U.out1L
-rw-r--r--test/062_transform_move/132_DLr_R.in2L
-rw-r--r--test/062_transform_move/132_DLr_R.out1L
-rw-r--r--test/062_transform_move/133_DLm_R.in2L
-rw-r--r--test/062_transform_move/133_DLm_R.out1L
-rw-r--r--test/062_transform_move/134_DLr_F.in2L
-rw-r--r--test/062_transform_move/134_DLr_F.out1L
-rw-r--r--test/062_transform_move/135_DLm_F.in2L
-rw-r--r--test/062_transform_move/135_DLm_F.out1L
-rw-r--r--test/062_transform_move/136_DBr_U.in2L
-rw-r--r--test/062_transform_move/136_DBr_U.out1L
-rw-r--r--test/062_transform_move/137_DBm_U.in2L
-rw-r--r--test/062_transform_move/137_DBm_U.out1L
-rw-r--r--test/062_transform_move/138_DBr_R.in2L
-rw-r--r--test/062_transform_move/138_DBr_R.out1L
-rw-r--r--test/062_transform_move/139_DBm_R.in2L
-rw-r--r--test/062_transform_move/139_DBm_R.out1L
-rw-r--r--test/062_transform_move/140_DBr_F.in2L
-rw-r--r--test/062_transform_move/140_DBr_F.out1L
-rw-r--r--test/062_transform_move/141_DBm_F.in2L
-rw-r--r--test/062_transform_move/141_DBm_F.out1L
-rw-r--r--test/062_transform_move/142_DRr_U.in2L
-rw-r--r--test/062_transform_move/142_DRr_U.out1L
-rw-r--r--test/062_transform_move/143_DRm_U.in2L
-rw-r--r--test/062_transform_move/143_DRm_U.out1L
-rw-r--r--test/062_transform_move/144_DRr_R.in2L
-rw-r--r--test/062_transform_move/144_DRr_R.out1L
-rw-r--r--test/062_transform_move/145_DRm_R.in2L
-rw-r--r--test/062_transform_move/145_DRm_R.out1L
-rw-r--r--test/062_transform_move/146_DRr_F.in2L
-rw-r--r--test/062_transform_move/146_DRr_F.out1L
-rw-r--r--test/062_transform_move/147_DRm_F.in2L
-rw-r--r--test/062_transform_move/147_DRm_F.out1L
-rw-r--r--test/062_transform_move/148_RUr_U.in2L
-rw-r--r--test/062_transform_move/148_RUr_U.out1L
-rw-r--r--test/062_transform_move/149_RUm_U.in2L
-rw-r--r--test/062_transform_move/149_RUm_U.out1L
-rw-r--r--test/062_transform_move/150_RUr_R.in2L
-rw-r--r--test/062_transform_move/150_RUr_R.out1L
-rw-r--r--test/062_transform_move/151_RUm_R.in2L
-rw-r--r--test/062_transform_move/151_RUm_R.out1L
-rw-r--r--test/062_transform_move/152_RUr_F.in2L
-rw-r--r--test/062_transform_move/152_RUr_F.out1L
-rw-r--r--test/062_transform_move/153_RUm_F.in2L
-rw-r--r--test/062_transform_move/153_RUm_F.out1L
-rw-r--r--test/062_transform_move/154_RFr_U.in2L
-rw-r--r--test/062_transform_move/154_RFr_U.out1L
-rw-r--r--test/062_transform_move/155_RFm_U.in2L
-rw-r--r--test/062_transform_move/155_RFm_U.out1L
-rw-r--r--test/062_transform_move/156_RFr_R.in2L
-rw-r--r--test/062_transform_move/156_RFr_R.out1L
-rw-r--r--test/062_transform_move/157_RFm_R.in2L
-rw-r--r--test/062_transform_move/157_RFm_R.out1L
-rw-r--r--test/062_transform_move/158_RFr_F.in2L
-rw-r--r--test/062_transform_move/158_RFr_F.out1L
-rw-r--r--test/062_transform_move/159_RFm_F.in2L
-rw-r--r--test/062_transform_move/159_RFm_F.out1L
-rw-r--r--test/062_transform_move/160_RDr_U.in2L
-rw-r--r--test/062_transform_move/160_RDr_U.out1L
-rw-r--r--test/062_transform_move/161_RDm_U.in2L
-rw-r--r--test/062_transform_move/161_RDm_U.out1L
-rw-r--r--test/062_transform_move/162_RDr_R.in2L
-rw-r--r--test/062_transform_move/162_RDr_R.out1L
-rw-r--r--test/062_transform_move/163_RDm_R.in2L
-rw-r--r--test/062_transform_move/163_RDm_R.out1L
-rw-r--r--test/062_transform_move/164_RDr_F.in2L
-rw-r--r--test/062_transform_move/164_RDr_F.out1L
-rw-r--r--test/062_transform_move/165_RDm_F.in2L
-rw-r--r--test/062_transform_move/165_RDm_F.out1L
-rw-r--r--test/062_transform_move/166_RBr_U.in2L
-rw-r--r--test/062_transform_move/166_RBr_U.out1L
-rw-r--r--test/062_transform_move/167_RBm_U.in2L
-rw-r--r--test/062_transform_move/167_RBm_U.out1L
-rw-r--r--test/062_transform_move/168_RBr_R.in2L
-rw-r--r--test/062_transform_move/168_RBr_R.out1L
-rw-r--r--test/062_transform_move/169_RBm_R.in2L
-rw-r--r--test/062_transform_move/169_RBm_R.out1L
-rw-r--r--test/062_transform_move/170_RBr_F.in2L
-rw-r--r--test/062_transform_move/170_RBr_F.out1L
-rw-r--r--test/062_transform_move/171_RBm_F.in2L
-rw-r--r--test/062_transform_move/171_RBm_F.out1L
-rw-r--r--test/062_transform_move/172_LUr_U.in2L
-rw-r--r--test/062_transform_move/172_LUr_U.out1L
-rw-r--r--test/062_transform_move/173_LUm_U.in2L
-rw-r--r--test/062_transform_move/173_LUm_U.out1L
-rw-r--r--test/062_transform_move/174_LUr_R.in2L
-rw-r--r--test/062_transform_move/174_LUr_R.out1L
-rw-r--r--test/062_transform_move/175_LUm_R.in2L
-rw-r--r--test/062_transform_move/175_LUm_R.out1L
-rw-r--r--test/062_transform_move/176_LUr_F.in2L
-rw-r--r--test/062_transform_move/176_LUr_F.out1L
-rw-r--r--test/062_transform_move/177_LUm_F.in2L
-rw-r--r--test/062_transform_move/177_LUm_F.out1L
-rw-r--r--test/062_transform_move/178_LFr_U.in2L
-rw-r--r--test/062_transform_move/178_LFr_U.out1L
-rw-r--r--test/062_transform_move/179_LFm_U.in2L
-rw-r--r--test/062_transform_move/179_LFm_U.out1L
-rw-r--r--test/062_transform_move/180_LFr_R.in2L
-rw-r--r--test/062_transform_move/180_LFr_R.out1L
-rw-r--r--test/062_transform_move/181_LFm_R.in2L
-rw-r--r--test/062_transform_move/181_LFm_R.out1L
-rw-r--r--test/062_transform_move/182_LFr_F.in2L
-rw-r--r--test/062_transform_move/182_LFr_F.out1L
-rw-r--r--test/062_transform_move/183_LFm_F.in2L
-rw-r--r--test/062_transform_move/183_LFm_F.out1L
-rw-r--r--test/062_transform_move/184_LDr_U.in2L
-rw-r--r--test/062_transform_move/184_LDr_U.out1L
-rw-r--r--test/062_transform_move/185_LDm_U.in2L
-rw-r--r--test/062_transform_move/185_LDm_U.out1L
-rw-r--r--test/062_transform_move/186_LDr_R.in2L
-rw-r--r--test/062_transform_move/186_LDr_R.out1L
-rw-r--r--test/062_transform_move/187_LDm_R.in2L
-rw-r--r--test/062_transform_move/187_LDm_R.out1L
-rw-r--r--test/062_transform_move/188_LDr_F.in2L
-rw-r--r--test/062_transform_move/188_LDr_F.out1L
-rw-r--r--test/062_transform_move/189_LDm_F.in2L
-rw-r--r--test/062_transform_move/189_LDm_F.out1L
-rw-r--r--test/062_transform_move/190_LBr_U.in2L
-rw-r--r--test/062_transform_move/190_LBr_U.out1L
-rw-r--r--test/062_transform_move/191_LBm_U.in2L
-rw-r--r--test/062_transform_move/191_LBm_U.out1L
-rw-r--r--test/062_transform_move/192_LBr_R.in2L
-rw-r--r--test/062_transform_move/192_LBr_R.out1L
-rw-r--r--test/062_transform_move/193_LBm_R.in2L
-rw-r--r--test/062_transform_move/193_LBm_R.out1L
-rw-r--r--test/062_transform_move/194_LBr_F.in2L
-rw-r--r--test/062_transform_move/194_LBr_F.out1L
-rw-r--r--test/062_transform_move/195_LBm_F.in2L
-rw-r--r--test/062_transform_move/195_LBm_F.out1L
-rw-r--r--test/062_transform_move/196_FUr_U.in2L
-rw-r--r--test/062_transform_move/196_FUr_U.out1L
-rw-r--r--test/062_transform_move/197_FUm_U.in2L
-rw-r--r--test/062_transform_move/197_FUm_U.out1L
-rw-r--r--test/062_transform_move/198_FUr_R.in2L
-rw-r--r--test/062_transform_move/198_FUr_R.out1L
-rw-r--r--test/062_transform_move/199_FUm_R.in2L
-rw-r--r--test/062_transform_move/199_FUm_R.out1L
-rw-r--r--test/062_transform_move/200_FUr_F.in2L
-rw-r--r--test/062_transform_move/200_FUr_F.out1L
-rw-r--r--test/062_transform_move/201_FUm_F.in2L
-rw-r--r--test/062_transform_move/201_FUm_F.out1L
-rw-r--r--test/062_transform_move/202_FRr_U.in2L
-rw-r--r--test/062_transform_move/202_FRr_U.out1L
-rw-r--r--test/062_transform_move/203_FRm_U.in2L
-rw-r--r--test/062_transform_move/203_FRm_U.out1L
-rw-r--r--test/062_transform_move/204_FRr_R.in2L
-rw-r--r--test/062_transform_move/204_FRr_R.out1L
-rw-r--r--test/062_transform_move/205_FRm_R.in2L
-rw-r--r--test/062_transform_move/205_FRm_R.out1L
-rw-r--r--test/062_transform_move/206_FRr_F.in2L
-rw-r--r--test/062_transform_move/206_FRr_F.out1L
-rw-r--r--test/062_transform_move/207_FRm_F.in2L
-rw-r--r--test/062_transform_move/207_FRm_F.out1L
-rw-r--r--test/062_transform_move/208_FDr_U.in2L
-rw-r--r--test/062_transform_move/208_FDr_U.out1L
-rw-r--r--test/062_transform_move/209_FDm_U.in2L
-rw-r--r--test/062_transform_move/209_FDm_U.out1L
-rw-r--r--test/062_transform_move/210_FDr_R.in2L
-rw-r--r--test/062_transform_move/210_FDr_R.out1L
-rw-r--r--test/062_transform_move/211_FDm_R.in2L
-rw-r--r--test/062_transform_move/211_FDm_R.out1L
-rw-r--r--test/062_transform_move/212_FDr_F.in2L
-rw-r--r--test/062_transform_move/212_FDr_F.out1L
-rw-r--r--test/062_transform_move/213_FDm_F.in2L
-rw-r--r--test/062_transform_move/213_FDm_F.out1L
-rw-r--r--test/062_transform_move/214_FLr_U.in2L
-rw-r--r--test/062_transform_move/214_FLr_U.out1L
-rw-r--r--test/062_transform_move/215_FLm_U.in2L
-rw-r--r--test/062_transform_move/215_FLm_U.out1L
-rw-r--r--test/062_transform_move/216_FLr_R.in2L
-rw-r--r--test/062_transform_move/216_FLr_R.out1L
-rw-r--r--test/062_transform_move/217_FLm_R.in2L
-rw-r--r--test/062_transform_move/217_FLm_R.out1L
-rw-r--r--test/062_transform_move/218_FLr_F.in2L
-rw-r--r--test/062_transform_move/218_FLr_F.out1L
-rw-r--r--test/062_transform_move/219_FLm_F.in2L
-rw-r--r--test/062_transform_move/219_FLm_F.out1L
-rw-r--r--test/062_transform_move/220_BUr_U.in2L
-rw-r--r--test/062_transform_move/220_BUr_U.out1L
-rw-r--r--test/062_transform_move/221_BUm_U.in2L
-rw-r--r--test/062_transform_move/221_BUm_U.out1L
-rw-r--r--test/062_transform_move/222_BUr_R.in2L
-rw-r--r--test/062_transform_move/222_BUr_R.out1L
-rw-r--r--test/062_transform_move/223_BUm_R.in2L
-rw-r--r--test/062_transform_move/223_BUm_R.out1L
-rw-r--r--test/062_transform_move/224_BUr_F.in2L
-rw-r--r--test/062_transform_move/224_BUr_F.out1L
-rw-r--r--test/062_transform_move/225_BUm_F.in2L
-rw-r--r--test/062_transform_move/225_BUm_F.out1L
-rw-r--r--test/062_transform_move/226_BRr_U.in2L
-rw-r--r--test/062_transform_move/226_BRr_U.out1L
-rw-r--r--test/062_transform_move/227_BRm_U.in2L
-rw-r--r--test/062_transform_move/227_BRm_U.out1L
-rw-r--r--test/062_transform_move/228_BRr_R.in2L
-rw-r--r--test/062_transform_move/228_BRr_R.out1L
-rw-r--r--test/062_transform_move/229_BRm_R.in2L
-rw-r--r--test/062_transform_move/229_BRm_R.out1L
-rw-r--r--test/062_transform_move/230_BRr_F.in2L
-rw-r--r--test/062_transform_move/230_BRr_F.out1L
-rw-r--r--test/062_transform_move/231_BRm_F.in2L
-rw-r--r--test/062_transform_move/231_BRm_F.out1L
-rw-r--r--test/062_transform_move/232_BDr_U.in2L
-rw-r--r--test/062_transform_move/232_BDr_U.out1L
-rw-r--r--test/062_transform_move/233_BDm_U.in2L
-rw-r--r--test/062_transform_move/233_BDm_U.out1L
-rw-r--r--test/062_transform_move/234_BDr_R.in2L
-rw-r--r--test/062_transform_move/234_BDr_R.out1L
-rw-r--r--test/062_transform_move/235_BDm_R.in2L
-rw-r--r--test/062_transform_move/235_BDm_R.out1L
-rw-r--r--test/062_transform_move/236_BDr_F.in2L
-rw-r--r--test/062_transform_move/236_BDr_F.out1L
-rw-r--r--test/062_transform_move/237_BDm_F.in2L
-rw-r--r--test/062_transform_move/237_BDm_F.out1L
-rw-r--r--test/062_transform_move/238_BLr_U.in2L
-rw-r--r--test/062_transform_move/238_BLr_U.out1L
-rw-r--r--test/062_transform_move/239_BLm_U.in2L
-rw-r--r--test/062_transform_move/239_BLm_U.out1L
-rw-r--r--test/062_transform_move/240_BLr_R.in2L
-rw-r--r--test/062_transform_move/240_BLr_R.out1L
-rw-r--r--test/062_transform_move/241_BLm_R.in2L
-rw-r--r--test/062_transform_move/241_BLm_R.out1L
-rw-r--r--test/062_transform_move/242_BLr_F.in2L
-rw-r--r--test/062_transform_move/242_BLr_F.out1L
-rw-r--r--test/062_transform_move/243_BLm_F.in2L
-rw-r--r--test/062_transform_move/243_BLm_F.out1L
-rw-r--r--test/062_transform_move/244_modifier_LBr_R2.in2L
-rw-r--r--test/062_transform_move/244_modifier_LBr_R2.out1L
-rw-r--r--test/062_transform_move/245_modifier_URr_F3.in2L
-rw-r--r--test/062_transform_move/245_modifier_URr_F3.out1L
-rw-r--r--test/062_transform_move/246_modifier_RBm_U3.in2L
-rw-r--r--test/062_transform_move/246_modifier_RBm_U3.out1L
-rw-r--r--test/062_transform_move/247_axis_UBr_L.in2L
-rw-r--r--test/062_transform_move/247_axis_UBr_L.out1L
-rw-r--r--test/062_transform_move/248_axis_BDm_D3.in2L
-rw-r--r--test/062_transform_move/248_axis_BDm_D3.out1L
-rw-r--r--test/062_transform_move/249_axis_DLr_B2.in2L
-rw-r--r--test/062_transform_move/249_axis_DLr_B2.out1L
-rw-r--r--test/062_transform_move/transform_move_tests.c35L
-rw-r--r--test/063_symmetry_mask/00_solved.in1L
-rw-r--r--test/063_symmetry_mask/00_solved.out1L
-rw-r--r--test/063_symmetry_mask/01_U.in1L
-rw-r--r--test/063_symmetry_mask/01_U.out1L
-rw-r--r--test/063_symmetry_mask/02_B2.in1L
-rw-r--r--test/063_symmetry_mask/02_B2.out1L
-rw-r--r--test/063_symmetry_mask/03_superflip.in1L
-rw-r--r--test/063_symmetry_mask/03_superflip.out1L
-rw-r--r--test/063_symmetry_mask/04_scrambled.in1L
-rw-r--r--test/063_symmetry_mask/04_scrambled.out1L
-rw-r--r--test/063_symmetry_mask/symmetry_mask_tests.c17L
-rw-r--r--test/071_coord_eo/00_solved.in1L
-rw-r--r--test/071_coord_eo/00_solved.out1L
-rw-r--r--test/071_coord_eo/01_U.in1L
-rw-r--r--test/071_coord_eo/01_U.out1L
-rw-r--r--test/071_coord_eo/02_U2.in1L
-rw-r--r--test/071_coord_eo/02_U2.out1L
-rw-r--r--test/071_coord_eo/03_U3.in1L
-rw-r--r--test/071_coord_eo/03_U3.out1L
-rw-r--r--test/071_coord_eo/04_D.in1L
-rw-r--r--test/071_coord_eo/04_D.out1L
-rw-r--r--test/071_coord_eo/07_R.in1L
-rw-r--r--test/071_coord_eo/07_R.out1L
-rw-r--r--test/071_coord_eo/08_R2.in1L
-rw-r--r--test/071_coord_eo/08_R2.out1L
-rw-r--r--test/071_coord_eo/10_L.in1L
-rw-r--r--test/071_coord_eo/10_L.out1L
-rw-r--r--test/071_coord_eo/13_F.in1L
-rw-r--r--test/071_coord_eo/13_F.out1L
-rw-r--r--test/071_coord_eo/14_F2.in1L
-rw-r--r--test/071_coord_eo/14_F2.out1L
-rw-r--r--test/071_coord_eo/15_F3.in1L
-rw-r--r--test/071_coord_eo/15_F3.out1L
-rw-r--r--test/071_coord_eo/16_B.in1L
-rw-r--r--test/071_coord_eo/16_B.out1L
-rw-r--r--test/071_coord_eo/17_B2.in1L
-rw-r--r--test/071_coord_eo/17_B2.out1L
-rw-r--r--test/071_coord_eo/18_B3.in1L
-rw-r--r--test/071_coord_eo/18_B3.out1L
-rw-r--r--test/071_coord_eo/20_scrambled.in3L
-rw-r--r--test/071_coord_eo/20_scrambled.out1L
-rw-r--r--test/071_coord_eo/coord_eo_tests.c16L
-rw-r--r--test/072_coord_co/00_solved.in1L
-rw-r--r--test/072_coord_co/00_solved.out1L
-rw-r--r--test/072_coord_co/01_U.in1L
-rw-r--r--test/072_coord_co/01_U.out1L
-rw-r--r--test/072_coord_co/02_U2.in1L
-rw-r--r--test/072_coord_co/02_U2.out1L
-rw-r--r--test/072_coord_co/03_U3.in1L
-rw-r--r--test/072_coord_co/03_U3.out1L
-rw-r--r--test/072_coord_co/04_D.in1L
-rw-r--r--test/072_coord_co/04_D.out1L
-rw-r--r--test/072_coord_co/07_R.in1L
-rw-r--r--test/072_coord_co/07_R.out1L
-rw-r--r--test/072_coord_co/08_R2.in1L
-rw-r--r--test/072_coord_co/08_R2.out1L
-rw-r--r--test/072_coord_co/10_L.in1L
-rw-r--r--test/072_coord_co/10_L.out1L
-rw-r--r--test/072_coord_co/13_F.in1L
-rw-r--r--test/072_coord_co/13_F.out1L
-rw-r--r--test/072_coord_co/14_F2.in1L
-rw-r--r--test/072_coord_co/14_F2.out1L
-rw-r--r--test/072_coord_co/16_B.in1L
-rw-r--r--test/072_coord_co/16_B.out1L
-rw-r--r--test/072_coord_co/17_B2.in1L
-rw-r--r--test/072_coord_co/17_B2.out1L
-rw-r--r--test/072_coord_co/20_scrambled.in3L
-rw-r--r--test/072_coord_co/20_scrambled.out1L
-rw-r--r--test/072_coord_co/coord_co_tests.c16L
-rw-r--r--test/073_coord_csep/00_solved.in1L
-rw-r--r--test/073_coord_csep/00_solved.out1L
-rw-r--r--test/073_coord_csep/01_U.in1L
-rw-r--r--test/073_coord_csep/01_U.out1L
-rw-r--r--test/073_coord_csep/02_U2.in1L
-rw-r--r--test/073_coord_csep/02_U2.out1L
-rw-r--r--test/073_coord_csep/03_U3.in1L
-rw-r--r--test/073_coord_csep/03_U3.out1L
-rw-r--r--test/073_coord_csep/04_D.in1L
-rw-r--r--test/073_coord_csep/04_D.out1L
-rw-r--r--test/073_coord_csep/07_R.in1L
-rw-r--r--test/073_coord_csep/07_R.out1L
-rw-r--r--test/073_coord_csep/08_R2.in1L
-rw-r--r--test/073_coord_csep/08_R2.out1L
-rw-r--r--test/073_coord_csep/13_F.in1L
-rw-r--r--test/073_coord_csep/13_F.out1L
-rw-r--r--test/073_coord_csep/20_scrambled.in3L
-rw-r--r--test/073_coord_csep/20_scrambled.out1L
-rw-r--r--test/073_coord_csep/coord_csep_tests.c16L
-rw-r--r--test/074_coord_esep/00_solved.in1L
-rw-r--r--test/074_coord_esep/00_solved.out1L
-rw-r--r--test/074_coord_esep/01_U.in1L
-rw-r--r--test/074_coord_esep/01_U.out1L
-rw-r--r--test/074_coord_esep/02_U2.in1L
-rw-r--r--test/074_coord_esep/02_U2.out1L
-rw-r--r--test/074_coord_esep/20_scrambled.in3L
-rw-r--r--test/074_coord_esep/20_scrambled.out1L
-rw-r--r--test/074_coord_esep/21_swapaxis_FB.in1L
-rw-r--r--test/074_coord_esep/21_swapaxis_FB.out1L
-rw-r--r--test/074_coord_esep/22_swapaxis_RL.in1L
-rw-r--r--test/074_coord_esep/22_swapaxis_RL.out1L
-rw-r--r--test/074_coord_esep/23_swapaxis_UD.in1L
-rw-r--r--test/074_coord_esep/23_swapaxis_UD.out1L
-rw-r--r--test/074_coord_esep/coord_esep_tests.c16L
-rw-r--r--test/075_set_eo/00_solved_0.in2L
-rw-r--r--test/075_set_eo/00_solved_0.out1L
-rw-r--r--test/075_set_eo/01_solved_1.in2L
-rw-r--r--test/075_set_eo/01_solved_1.out1L
-rw-r--r--test/075_set_eo/02_solved_other.in2L
-rw-r--r--test/075_set_eo/02_solved_other.out1L
-rw-r--r--test/075_set_eo/03_solved_firstlast.in2L
-rw-r--r--test/075_set_eo/03_solved_firstlast.out1L
-rw-r--r--test/075_set_eo/10_scrambled_0.in4L
-rw-r--r--test/075_set_eo/10_scrambled_0.out1L
-rw-r--r--test/075_set_eo/11_scrambled_1.in4L
-rw-r--r--test/075_set_eo/11_scrambled_1.out1L
-rw-r--r--test/075_set_eo/set_eo_tests.c36L
-rw-r--r--test/076_copy_corners/00_solved_scrambled.in2L
-rw-r--r--test/076_copy_corners/00_solved_scrambled.out1L
-rw-r--r--test/076_copy_corners/copy_corners_tests.c25L
-rw-r--r--test/077_copy_edges/00_solved_scrambled.in2L
-rw-r--r--test/077_copy_edges/00_solved_scrambled.out1L
-rw-r--r--test/077_copy_edges/copy_edges_tests.c25L
-rw-r--r--test/078_invcoord_esep/00_solved.in1L
-rw-r--r--test/078_invcoord_esep/00_solved.out1L
-rw-r--r--test/078_invcoord_esep/01_U.in1L
-rw-r--r--test/078_invcoord_esep/01_U.out1L
-rw-r--r--test/078_invcoord_esep/02_U2.in1L
-rw-r--r--test/078_invcoord_esep/02_U2.out1L
-rw-r--r--test/078_invcoord_esep/20_scrambled.in3L
-rw-r--r--test/078_invcoord_esep/20_scrambled.out1L
-rw-r--r--test/078_invcoord_esep/21_swapaxis_FB.in1L
-rw-r--r--test/078_invcoord_esep/21_swapaxis_FB.out1L
-rw-r--r--test/078_invcoord_esep/22_swapaxis_RL.in1L
-rw-r--r--test/078_invcoord_esep/22_swapaxis_RL.out1L
-rw-r--r--test/078_invcoord_esep/23_swapaxis_UD.in1L
-rw-r--r--test/078_invcoord_esep/23_swapaxis_UD.out1L
-rw-r--r--test/078_invcoord_esep/invcoord_esep_tests.c19L
-rw-r--r--test/079_invcoord_co/00_all.in0B
-rw-r--r--test/079_invcoord_co/00_all.out1L
-rw-r--r--test/079_invcoord_co/invcoord_co_tests.c36L
-rw-r--r--test/080_allowedmoves/00_empty.in1L
-rw-r--r--test/080_allowedmoves/00_empty.out1L
-rw-r--r--test/080_allowedmoves/01_onemove.in2L
-rw-r--r--test/080_allowedmoves/01_onemove.out1L
-rw-r--r--test/080_allowedmoves/02_F_F2.in3L
-rw-r--r--test/080_allowedmoves/02_F_F2.out1L
-rw-r--r--test/080_allowedmoves/03_U_F.in3L
-rw-r--r--test/080_allowedmoves/03_U_F.out1L
-rw-r--r--test/080_allowedmoves/04_R_L_R.in4L
-rw-r--r--test/080_allowedmoves/04_R_L_R.out1L
-rw-r--r--test/080_allowedmoves/05_longer_true.in12L
-rw-r--r--test/080_allowedmoves/05_longer_true.out1L
-rw-r--r--test/080_allowedmoves/06_longer_false.in12L
-rw-r--r--test/080_allowedmoves/06_longer_false.out1L
-rw-r--r--test/080_allowedmoves/07_D_U_false_order.in3L
-rw-r--r--test/080_allowedmoves/07_D_U_false_order.out1L
-rw-r--r--test/080_allowedmoves/allowedmoves_tests.c31L
-rw-r--r--test/081_getcube/00_solved_0.in4L
-rw-r--r--test/081_getcube/00_solved_0.out1L
-rw-r--r--test/081_getcube/02_scrambled.in4L
-rw-r--r--test/081_getcube/02_scrambled.out1L
-rw-r--r--test/081_getcube/getcube_tests.c32L
-rw-r--r--test/090_tables_readwrite/00_table.in35L
-rw-r--r--test/090_tables_readwrite/00_table.out35L
-rw-r--r--test/090_tables_readwrite/tables_readwrite_tests.c76L
-rw-r--r--test/100_gendata_cocsep/00_all.in0B
-rw-r--r--test/100_gendata_cocsep/00_all.out13L
-rw-r--r--test/100_gendata_cocsep/gendata_cocsep_tests.c27L
-rw-r--r--test/101_cocsep_transform_invariant/00_solved.in1L
-rw-r--r--test/101_cocsep_transform_invariant/00_solved.out0B
-rw-r--r--test/101_cocsep_transform_invariant/01_U.in1L
-rw-r--r--test/101_cocsep_transform_invariant/01_U.out0B
-rw-r--r--test/101_cocsep_transform_invariant/02_scrambled.in1L
-rw-r--r--test/101_cocsep_transform_invariant/02_scrambled.out0B
-rw-r--r--test/101_cocsep_transform_invariant/cocsep_transform_invariant.c31L
-rw-r--r--test/102_cocsep_selfsim/00_all.in2L
-rw-r--r--test/102_cocsep_selfsim/00_all.out2L
-rw-r--r--test/102_cocsep_selfsim/cocsep_selfsim_tests.c39L
-rw-r--r--test/103_cocsep_selfsim_distribution/00_all.in0B
-rw-r--r--test/103_cocsep_selfsim_distribution/00_all.out12L
-rw-r--r--test/103_cocsep_selfsim_distribution/cocsep_selfsim_distribution_tests.c38L
-rw-r--r--test/104_cocsep_ttrep/00_all.in0B
-rw-r--r--test/104_cocsep_ttrep/00_all.out0B
-rw-r--r--test/104_cocsep_ttrep/cocsep_ttrep_tests.c34L
-rw-r--r--test/105_gendata_eoesep/00_all.in0B
-rw-r--r--test/105_gendata_eoesep/00_all.out9L
-rw-r--r--test/105_gendata_eoesep/gendata_eoesep_tests.c46L
-rw-r--r--test/110_coord_invcoord_h48/00_all.in8L
-rw-r--r--test/110_coord_invcoord_h48/00_all.out8L
-rw-r--r--test/110_coord_invcoord_h48/coord_invcoord_h48_tests.c37L
-rw-r--r--test/111_h48map/00_small.in11L
-rw-r--r--test/111_h48map/00_small.out3L
-rw-r--r--test/111_h48map/01_large.in303L
-rw-r--r--test/111_h48map/01_large.out83L
-rw-r--r--test/111_h48map/h48map_tests.c70L
-rw-r--r--test/112_gendata_h48short/00_depth_1.in28L
-rw-r--r--test/112_gendata_h48short/00_depth_1.out3L
-rw-r--r--test/112_gendata_h48short/01_depth_3.in3L
-rw-r--r--test/112_gendata_h48short/01_depth_3.out40L
-rw-r--r--test/112_gendata_h48short/gendata_h48short_tests.c61L
-rw-r--r--test/120_gendata_eo/00_all.in0B
-rw-r--r--test/120_gendata_eo/00_all.out12L
-rw-r--r--test/120_gendata_eo/gendata_eo_tests.c37L
-rw-r--r--test/121_coorddata_dr/00_all.in0B
-rw-r--r--test/121_coorddata_dr/00_all.out1L
-rw-r--r--test/121_coorddata_dr/coorddata_dr.c61L
-rw-r--r--test/122_coorddata_dreo/00_all.in0B
-rw-r--r--test/122_coorddata_dreo/00_all.out1L
-rw-r--r--test/122_coorddata_dreo/coorddata_dreo.c61L
-rw-r--r--test/130_appendsolution/00_empty.in5L
-rw-r--r--test/130_appendsolution/00_empty.out4L
-rw-r--r--test/130_appendsolution/01_simple_onlynormal_nounniss.in5L
-rw-r--r--test/130_appendsolution/01_simple_onlynormal_nounniss.out4L
-rw-r--r--test/130_appendsolution/02_simple_onlynormal_nounnis_multitrans.in8L
-rw-r--r--test/130_appendsolution/02_simple_onlynormal_nounnis_multitrans.out7L
-rw-r--r--test/130_appendsolution/03_simple_unniss.in5L
-rw-r--r--test/130_appendsolution/03_simple_unniss.out4L
-rw-r--r--test/130_appendsolution/04_niss_nounniss.in5L
-rw-r--r--test/130_appendsolution/04_niss_nounniss.out4L
-rw-r--r--test/130_appendsolution/05_sort_parallel.in5L
-rw-r--r--test/130_appendsolution/05_sort_parallel.out4L
-rw-r--r--test/130_appendsolution/06_unniss_trans_sort.in5L
-rw-r--r--test/130_appendsolution/06_unniss_trans_sort.out4L
-rw-r--r--test/130_appendsolution/07_unniss_cancel_nosol.in5L
-rw-r--r--test/130_appendsolution/07_unniss_cancel_nosol.out3L
-rw-r--r--test/130_appendsolution/08_unniss_cancel_nosol_v2.in5L
-rw-r--r--test/130_appendsolution/08_unniss_cancel_nosol_v2.out3L
-rw-r--r--test/130_appendsolution/09_fullinverse_niss.in5L
-rw-r--r--test/130_appendsolution/09_fullinverse_niss.out4L
-rw-r--r--test/130_appendsolution/10_rotated.in5L
-rw-r--r--test/130_appendsolution/10_rotated.out4L
-rw-r--r--test/130_appendsolution/appendsolution_tests.c68L
-rw-r--r--test/test.h44L
-rwxr-xr-xtest/test.sh33L
-rw-r--r--tools/000_gendata/gendata.c60L
-rw-r--r--tools/001_derive_h48/derive_h48.c40L
-rw-r--r--tools/100_checkdata/checkdata.c50L
-rw-r--r--tools/300_solve_small/solve_small.c72L
-rw-r--r--tools/301_solve_file/solve_file.c71L
-rw-r--r--tools/302_solve_multisol/solve_multisol.c66L
-rw-r--r--tools/400_solvetest/scrambles.h62L
-rw-r--r--tools/400_solvetest/solve_test.c118L
-rw-r--r--tools/expected_distributions.h267L
-rw-r--r--tools/nissy_extra.h14L
-rw-r--r--tools/tool.h253L
-rwxr-xr-xtools/tool.sh40L
-rw-r--r--utils/convert.c409L
-rw-r--r--utils/cubes/TRANSFORMATIONS.txt23L
-rw-r--r--utils/cubes/move_00_U.txt1L
-rw-r--r--utils/cubes/move_01_U2.txt1L
-rw-r--r--utils/cubes/move_02_U3.txt1L
-rw-r--r--utils/cubes/move_03_D.txt1L
-rw-r--r--utils/cubes/move_04_D2.txt1L
-rw-r--r--utils/cubes/move_05_D3.txt1L
-rw-r--r--utils/cubes/move_06_R.txt1L
-rw-r--r--utils/cubes/move_07_R2.txt1L
-rw-r--r--utils/cubes/move_08_R3.txt1L
-rw-r--r--utils/cubes/move_09_L.txt1L
-rw-r--r--utils/cubes/move_10_L2.txt1L
-rw-r--r--utils/cubes/move_11_L3.txt1L
-rw-r--r--utils/cubes/move_12_F.txt1L
-rw-r--r--utils/cubes/move_13_F2.txt1L
-rw-r--r--utils/cubes/move_14_F3.txt1L
-rw-r--r--utils/cubes/move_15_B.txt1L
-rw-r--r--utils/cubes/move_16_B2.txt1L
-rw-r--r--utils/cubes/move_17_B3.txt1L
-rw-r--r--utils/cubes/move_18_Uw.txt1L
-rw-r--r--utils/cubes/move_19_Uw2.txt1L
-rw-r--r--utils/cubes/move_20_Uw3.txt1L
-rw-r--r--utils/cubes/move_21_Dw.txt1L
-rw-r--r--utils/cubes/move_22_Dw2.txt1L
-rw-r--r--utils/cubes/move_23_Dw3.txt1L
-rw-r--r--utils/cubes/move_24_Rw.txt1L
-rw-r--r--utils/cubes/move_25_Rw2.txt1L
-rw-r--r--utils/cubes/move_26_Rw3.txt1L
-rw-r--r--utils/cubes/move_27_Lw.txt1L
-rw-r--r--utils/cubes/move_28_Lw2.txt1L
-rw-r--r--utils/cubes/move_29_Lw3.txt1L
-rw-r--r--utils/cubes/move_30_Fw.txt1L
-rw-r--r--utils/cubes/move_31_Fw2.txt1L
-rw-r--r--utils/cubes/move_32_Fw3.txt1L
-rw-r--r--utils/cubes/move_33_Bw.txt1L
-rw-r--r--utils/cubes/move_34_Bw2.txt1L
-rw-r--r--utils/cubes/move_35_Bw3.txt1L
-rw-r--r--utils/cubes/move_36_M.txt1L
-rw-r--r--utils/cubes/move_37_M2.txt1L
-rw-r--r--utils/cubes/move_38_M3.txt1L
-rw-r--r--utils/cubes/move_39_S.txt1L
-rw-r--r--utils/cubes/move_40_S2.txt1L
-rw-r--r--utils/cubes/move_41_S3.txt1L
-rw-r--r--utils/cubes/move_42_E.txt1L
-rw-r--r--utils/cubes/move_43_E2.txt1L
-rw-r--r--utils/cubes/move_44_E3.txt1L
-rw-r--r--utils/cubes/move_45_x.txt1L
-rw-r--r--utils/cubes/move_46_x2.txt1L
-rw-r--r--utils/cubes/move_47_x3.txt1L
-rw-r--r--utils/cubes/move_48_y.txt1L
-rw-r--r--utils/cubes/move_49_y2.txt1L
-rw-r--r--utils/cubes/move_50_y3.txt1L
-rw-r--r--utils/cubes/move_51_z.txt1L
-rw-r--r--utils/cubes/move_52_z2.txt1L
-rw-r--r--utils/cubes/move_53_z3.txt1L
-rw-r--r--utils/cubes/solved.txt1L
-rw-r--r--utils/cubes/trans_move_array.txt192L
-rw-r--r--utils/cubes/transform_00_UFr.txt1L
-rw-r--r--utils/cubes/transform_01_ULr.txt1L
-rw-r--r--utils/cubes/transform_02_UBr.txt1L
-rw-r--r--utils/cubes/transform_03_URr.txt1L
-rw-r--r--utils/cubes/transform_04_DFr.txt1L
-rw-r--r--utils/cubes/transform_05_DLr.txt1L
-rw-r--r--utils/cubes/transform_06_DBr.txt1L
-rw-r--r--utils/cubes/transform_07_DRr.txt1L
-rw-r--r--utils/cubes/transform_08_RUr.txt1L
-rw-r--r--utils/cubes/transform_09_RFr.txt1L
-rw-r--r--utils/cubes/transform_10_RDr.txt1L
-rw-r--r--utils/cubes/transform_11_RBr.txt1L
-rw-r--r--utils/cubes/transform_12_LUr.txt1L
-rw-r--r--utils/cubes/transform_13_LFr.txt1L
-rw-r--r--utils/cubes/transform_14_LDr.txt1L
-rw-r--r--utils/cubes/transform_15_LBr.txt1L
-rw-r--r--utils/cubes/transform_16_FUr.txt1L
-rw-r--r--utils/cubes/transform_17_FRr.txt1L
-rw-r--r--utils/cubes/transform_18_FDr.txt1L
-rw-r--r--utils/cubes/transform_19_FLr.txt1L
-rw-r--r--utils/cubes/transform_20_BUr.txt1L
-rw-r--r--utils/cubes/transform_21_BRr.txt1L
-rw-r--r--utils/cubes/transform_22_BDr.txt1L
-rw-r--r--utils/cubes/transform_23_BLr.txt1L
-rw-r--r--utils/cubes/transform_24_UFm.txt1L
-rw-r--r--utils/cubes/transform_25_ULm.txt1L
-rw-r--r--utils/cubes/transform_26_UBm.txt1L
-rw-r--r--utils/cubes/transform_27_URm.txt1L
-rw-r--r--utils/cubes/transform_28_DFm.txt1L
-rw-r--r--utils/cubes/transform_29_DLm.txt1L
-rw-r--r--utils/cubes/transform_30_DBm.txt1L
-rw-r--r--utils/cubes/transform_31_DRm.txt1L
-rw-r--r--utils/cubes/transform_32_RUm.txt1L
-rw-r--r--utils/cubes/transform_33_RFm.txt1L
-rw-r--r--utils/cubes/transform_34_RDm.txt1L
-rw-r--r--utils/cubes/transform_35_RBm.txt1L
-rw-r--r--utils/cubes/transform_36_LUm.txt1L
-rw-r--r--utils/cubes/transform_37_LFm.txt1L
-rw-r--r--utils/cubes/transform_38_LDm.txt1L
-rw-r--r--utils/cubes/transform_39_LBm.txt1L
-rw-r--r--utils/cubes/transform_40_FUm.txt1L
-rw-r--r--utils/cubes/transform_41_FRm.txt1L
-rw-r--r--utils/cubes/transform_42_FDm.txt1L
-rw-r--r--utils/cubes/transform_43_FLm.txt1L
-rw-r--r--utils/cubes/transform_44_BUm.txt1L
-rw-r--r--utils/cubes/transform_45_BRm.txt1L
-rw-r--r--utils/cubes/transform_46_BDm.txt1L
-rw-r--r--utils/cubes/transform_47_BLm.txt1L
-rw-r--r--utils/extended_trans/500_DLr_Uw.in2L
-rw-r--r--utils/extended_trans/500_DLr_Uw.out1L
-rw-r--r--utils/extended_trans/501_RBr_Lw3.in2L
-rw-r--r--utils/extended_trans/501_RBr_Lw3.out1L
-rw-r--r--utils/extended_trans/502_FLm_Fw.in2L
-rw-r--r--utils/extended_trans/502_FLm_Fw.out1L
-rw-r--r--utils/extended_trans/600_BDr_M3.in2L
-rw-r--r--utils/extended_trans/600_BDr_M3.out1L
-rw-r--r--utils/extended_trans/601_LDm_E.in2L
-rw-r--r--utils/extended_trans/601_LDm_E.out1L
-rw-r--r--utils/extended_trans/602_FDm_S.in2L
-rw-r--r--utils/extended_trans/602_FDm_S.out1L
-rw-r--r--utils/extended_trans/700_FRr_x.in2L
-rw-r--r--utils/extended_trans/700_FRr_x.out1L
-rw-r--r--utils/extended_trans/701_BDm_z3.in2L
-rw-r--r--utils/extended_trans/701_BDm_z3.out1L
-rw-r--r--utils/extended_trans/README3L
-rw-r--r--utils/generated_trans_tests/100_UFr_U.in2L
-rw-r--r--utils/generated_trans_tests/100_UFr_U.out1L
-rw-r--r--utils/generated_trans_tests/101_UFm_U.in2L
-rw-r--r--utils/generated_trans_tests/101_UFm_U.out1L
-rw-r--r--utils/generated_trans_tests/102_UFr_R.in2L
-rw-r--r--utils/generated_trans_tests/102_UFr_R.out1L
-rw-r--r--utils/generated_trans_tests/103_UFm_R.in2L
-rw-r--r--utils/generated_trans_tests/103_UFm_R.out1L
-rw-r--r--utils/generated_trans_tests/104_UFr_F.in2L
-rw-r--r--utils/generated_trans_tests/104_UFr_F.out1L
-rw-r--r--utils/generated_trans_tests/105_UFm_F.in2L
-rw-r--r--utils/generated_trans_tests/105_UFm_F.out1L
-rw-r--r--utils/generated_trans_tests/106_ULr_U.in2L
-rw-r--r--utils/generated_trans_tests/106_ULr_U.out1L
-rw-r--r--utils/generated_trans_tests/107_ULm_U.in2L
-rw-r--r--utils/generated_trans_tests/107_ULm_U.out1L
-rw-r--r--utils/generated_trans_tests/108_ULr_R.in2L
-rw-r--r--utils/generated_trans_tests/108_ULr_R.out1L
-rw-r--r--utils/generated_trans_tests/109_ULm_R.in2L
-rw-r--r--utils/generated_trans_tests/109_ULm_R.out1L
-rw-r--r--utils/generated_trans_tests/110_ULr_F.in2L
-rw-r--r--utils/generated_trans_tests/110_ULr_F.out1L
-rw-r--r--utils/generated_trans_tests/111_ULm_F.in2L
-rw-r--r--utils/generated_trans_tests/111_ULm_F.out1L
-rw-r--r--utils/generated_trans_tests/112_UBr_U.in2L
-rw-r--r--utils/generated_trans_tests/112_UBr_U.out1L
-rw-r--r--utils/generated_trans_tests/113_UBm_U.in2L
-rw-r--r--utils/generated_trans_tests/113_UBm_U.out1L
-rw-r--r--utils/generated_trans_tests/114_UBr_R.in2L
-rw-r--r--utils/generated_trans_tests/114_UBr_R.out1L
-rw-r--r--utils/generated_trans_tests/115_UBm_R.in2L
-rw-r--r--utils/generated_trans_tests/115_UBm_R.out1L
-rw-r--r--utils/generated_trans_tests/116_UBr_F.in2L
-rw-r--r--utils/generated_trans_tests/116_UBr_F.out1L
-rw-r--r--utils/generated_trans_tests/117_UBm_F.in2L
-rw-r--r--utils/generated_trans_tests/117_UBm_F.out1L
-rw-r--r--utils/generated_trans_tests/118_URr_U.in2L
-rw-r--r--utils/generated_trans_tests/118_URr_U.out1L
-rw-r--r--utils/generated_trans_tests/119_URm_U.in2L
-rw-r--r--utils/generated_trans_tests/119_URm_U.out1L
-rw-r--r--utils/generated_trans_tests/120_URr_R.in2L
-rw-r--r--utils/generated_trans_tests/120_URr_R.out1L
-rw-r--r--utils/generated_trans_tests/121_URm_R.in2L
-rw-r--r--utils/generated_trans_tests/121_URm_R.out1L
-rw-r--r--utils/generated_trans_tests/122_URr_F.in2L
-rw-r--r--utils/generated_trans_tests/122_URr_F.out1L
-rw-r--r--utils/generated_trans_tests/123_URm_F.in2L
-rw-r--r--utils/generated_trans_tests/123_URm_F.out1L
-rw-r--r--utils/generated_trans_tests/124_DFr_U.in2L
-rw-r--r--utils/generated_trans_tests/124_DFr_U.out1L
-rw-r--r--utils/generated_trans_tests/125_DFm_U.in2L
-rw-r--r--utils/generated_trans_tests/125_DFm_U.out1L
-rw-r--r--utils/generated_trans_tests/126_DFr_R.in2L
-rw-r--r--utils/generated_trans_tests/126_DFr_R.out1L
-rw-r--r--utils/generated_trans_tests/127_DFm_R.in2L
-rw-r--r--utils/generated_trans_tests/127_DFm_R.out1L
-rw-r--r--utils/generated_trans_tests/128_DFr_F.in2L
-rw-r--r--utils/generated_trans_tests/128_DFr_F.out1L
-rw-r--r--utils/generated_trans_tests/129_DFm_F.in2L
-rw-r--r--utils/generated_trans_tests/129_DFm_F.out1L
-rw-r--r--utils/generated_trans_tests/130_DLr_U.in2L
-rw-r--r--utils/generated_trans_tests/130_DLr_U.out1L
-rw-r--r--utils/generated_trans_tests/131_DLm_U.in2L
-rw-r--r--utils/generated_trans_tests/131_DLm_U.out1L
-rw-r--r--utils/generated_trans_tests/132_DLr_R.in2L
-rw-r--r--utils/generated_trans_tests/132_DLr_R.out1L
-rw-r--r--utils/generated_trans_tests/133_DLm_R.in2L
-rw-r--r--utils/generated_trans_tests/133_DLm_R.out1L
-rw-r--r--utils/generated_trans_tests/134_DLr_F.in2L
-rw-r--r--utils/generated_trans_tests/134_DLr_F.out1L
-rw-r--r--utils/generated_trans_tests/135_DLm_F.in2L
-rw-r--r--utils/generated_trans_tests/135_DLm_F.out1L
-rw-r--r--utils/generated_trans_tests/136_DBr_U.in2L
-rw-r--r--utils/generated_trans_tests/136_DBr_U.out1L
-rw-r--r--utils/generated_trans_tests/137_DBm_U.in2L
-rw-r--r--utils/generated_trans_tests/137_DBm_U.out1L
-rw-r--r--utils/generated_trans_tests/138_DBr_R.in2L
-rw-r--r--utils/generated_trans_tests/138_DBr_R.out1L
-rw-r--r--utils/generated_trans_tests/139_DBm_R.in2L
-rw-r--r--utils/generated_trans_tests/139_DBm_R.out1L
-rw-r--r--utils/generated_trans_tests/140_DBr_F.in2L
-rw-r--r--utils/generated_trans_tests/140_DBr_F.out1L
-rw-r--r--utils/generated_trans_tests/141_DBm_F.in2L
-rw-r--r--utils/generated_trans_tests/141_DBm_F.out1L
-rw-r--r--utils/generated_trans_tests/142_DRr_U.in2L
-rw-r--r--utils/generated_trans_tests/142_DRr_U.out1L
-rw-r--r--utils/generated_trans_tests/143_DRm_U.in2L
-rw-r--r--utils/generated_trans_tests/143_DRm_U.out1L
-rw-r--r--utils/generated_trans_tests/144_DRr_R.in2L
-rw-r--r--utils/generated_trans_tests/144_DRr_R.out1L
-rw-r--r--utils/generated_trans_tests/145_DRm_R.in2L
-rw-r--r--utils/generated_trans_tests/145_DRm_R.out1L
-rw-r--r--utils/generated_trans_tests/146_DRr_F.in2L
-rw-r--r--utils/generated_trans_tests/146_DRr_F.out1L
-rw-r--r--utils/generated_trans_tests/147_DRm_F.in2L
-rw-r--r--utils/generated_trans_tests/147_DRm_F.out1L
-rw-r--r--utils/generated_trans_tests/148_RUr_U.in2L
-rw-r--r--utils/generated_trans_tests/148_RUr_U.out1L
-rw-r--r--utils/generated_trans_tests/149_RUm_U.in2L
-rw-r--r--utils/generated_trans_tests/149_RUm_U.out1L
-rw-r--r--utils/generated_trans_tests/150_RUr_R.in2L
-rw-r--r--utils/generated_trans_tests/150_RUr_R.out1L
-rw-r--r--utils/generated_trans_tests/151_RUm_R.in2L
-rw-r--r--utils/generated_trans_tests/151_RUm_R.out1L
-rw-r--r--utils/generated_trans_tests/152_RUr_F.in2L
-rw-r--r--utils/generated_trans_tests/152_RUr_F.out1L
-rw-r--r--utils/generated_trans_tests/153_RUm_F.in2L
-rw-r--r--utils/generated_trans_tests/153_RUm_F.out1L
-rw-r--r--utils/generated_trans_tests/154_RFr_U.in2L
-rw-r--r--utils/generated_trans_tests/154_RFr_U.out1L
-rw-r--r--utils/generated_trans_tests/155_RFm_U.in2L
-rw-r--r--utils/generated_trans_tests/155_RFm_U.out1L
-rw-r--r--utils/generated_trans_tests/156_RFr_R.in2L
-rw-r--r--utils/generated_trans_tests/156_RFr_R.out1L
-rw-r--r--utils/generated_trans_tests/157_RFm_R.in2L
-rw-r--r--utils/generated_trans_tests/157_RFm_R.out1L
-rw-r--r--utils/generated_trans_tests/158_RFr_F.in2L
-rw-r--r--utils/generated_trans_tests/158_RFr_F.out1L
-rw-r--r--utils/generated_trans_tests/159_RFm_F.in2L
-rw-r--r--utils/generated_trans_tests/159_RFm_F.out1L
-rw-r--r--utils/generated_trans_tests/160_RDr_U.in2L
-rw-r--r--utils/generated_trans_tests/160_RDr_U.out1L
-rw-r--r--utils/generated_trans_tests/161_RDm_U.in2L
-rw-r--r--utils/generated_trans_tests/161_RDm_U.out1L
-rw-r--r--utils/generated_trans_tests/162_RDr_R.in2L
-rw-r--r--utils/generated_trans_tests/162_RDr_R.out1L
-rw-r--r--utils/generated_trans_tests/163_RDm_R.in2L
-rw-r--r--utils/generated_trans_tests/163_RDm_R.out1L
-rw-r--r--utils/generated_trans_tests/164_RDr_F.in2L
-rw-r--r--utils/generated_trans_tests/164_RDr_F.out1L
-rw-r--r--utils/generated_trans_tests/165_RDm_F.in2L
-rw-r--r--utils/generated_trans_tests/165_RDm_F.out1L
-rw-r--r--utils/generated_trans_tests/166_RBr_U.in2L
-rw-r--r--utils/generated_trans_tests/166_RBr_U.out1L
-rw-r--r--utils/generated_trans_tests/167_RBm_U.in2L
-rw-r--r--utils/generated_trans_tests/167_RBm_U.out1L
-rw-r--r--utils/generated_trans_tests/168_RBr_R.in2L
-rw-r--r--utils/generated_trans_tests/168_RBr_R.out1L
-rw-r--r--utils/generated_trans_tests/169_RBm_R.in2L
-rw-r--r--utils/generated_trans_tests/169_RBm_R.out1L
-rw-r--r--utils/generated_trans_tests/170_RBr_F.in2L
-rw-r--r--utils/generated_trans_tests/170_RBr_F.out1L
-rw-r--r--utils/generated_trans_tests/171_RBm_F.in2L
-rw-r--r--utils/generated_trans_tests/171_RBm_F.out1L
-rw-r--r--utils/generated_trans_tests/172_LUr_U.in2L
-rw-r--r--utils/generated_trans_tests/172_LUr_U.out1L
-rw-r--r--utils/generated_trans_tests/173_LUm_U.in2L
-rw-r--r--utils/generated_trans_tests/173_LUm_U.out1L
-rw-r--r--utils/generated_trans_tests/174_LUr_R.in2L
-rw-r--r--utils/generated_trans_tests/174_LUr_R.out1L
-rw-r--r--utils/generated_trans_tests/175_LUm_R.in2L
-rw-r--r--utils/generated_trans_tests/175_LUm_R.out1L
-rw-r--r--utils/generated_trans_tests/176_LUr_F.in2L
-rw-r--r--utils/generated_trans_tests/176_LUr_F.out1L
-rw-r--r--utils/generated_trans_tests/177_LUm_F.in2L
-rw-r--r--utils/generated_trans_tests/177_LUm_F.out1L
-rw-r--r--utils/generated_trans_tests/178_LFr_U.in2L
-rw-r--r--utils/generated_trans_tests/178_LFr_U.out1L
-rw-r--r--utils/generated_trans_tests/179_LFm_U.in2L
-rw-r--r--utils/generated_trans_tests/179_LFm_U.out1L
-rw-r--r--utils/generated_trans_tests/180_LFr_R.in2L
-rw-r--r--utils/generated_trans_tests/180_LFr_R.out1L
-rw-r--r--utils/generated_trans_tests/181_LFm_R.in2L
-rw-r--r--utils/generated_trans_tests/181_LFm_R.out1L
-rw-r--r--utils/generated_trans_tests/182_LFr_F.in2L
-rw-r--r--utils/generated_trans_tests/182_LFr_F.out1L
-rw-r--r--utils/generated_trans_tests/183_LFm_F.in2L
-rw-r--r--utils/generated_trans_tests/183_LFm_F.out1L
-rw-r--r--utils/generated_trans_tests/184_LDr_U.in2L
-rw-r--r--utils/generated_trans_tests/184_LDr_U.out1L
-rw-r--r--utils/generated_trans_tests/185_LDm_U.in2L
-rw-r--r--utils/generated_trans_tests/185_LDm_U.out1L
-rw-r--r--utils/generated_trans_tests/186_LDr_R.in2L
-rw-r--r--utils/generated_trans_tests/186_LDr_R.out1L
-rw-r--r--utils/generated_trans_tests/187_LDm_R.in2L
-rw-r--r--utils/generated_trans_tests/187_LDm_R.out1L
-rw-r--r--utils/generated_trans_tests/188_LDr_F.in2L
-rw-r--r--utils/generated_trans_tests/188_LDr_F.out1L
-rw-r--r--utils/generated_trans_tests/189_LDm_F.in2L
-rw-r--r--utils/generated_trans_tests/189_LDm_F.out1L
-rw-r--r--utils/generated_trans_tests/190_LBr_U.in2L
-rw-r--r--utils/generated_trans_tests/190_LBr_U.out1L
-rw-r--r--utils/generated_trans_tests/191_LBm_U.in2L
-rw-r--r--utils/generated_trans_tests/191_LBm_U.out1L
-rw-r--r--utils/generated_trans_tests/192_LBr_R.in2L
-rw-r--r--utils/generated_trans_tests/192_LBr_R.out1L
-rw-r--r--utils/generated_trans_tests/193_LBm_R.in2L
-rw-r--r--utils/generated_trans_tests/193_LBm_R.out1L
-rw-r--r--utils/generated_trans_tests/194_LBr_F.in2L
-rw-r--r--utils/generated_trans_tests/194_LBr_F.out1L
-rw-r--r--utils/generated_trans_tests/195_LBm_F.in2L
-rw-r--r--utils/generated_trans_tests/195_LBm_F.out1L
-rw-r--r--utils/generated_trans_tests/196_FUr_U.in2L
-rw-r--r--utils/generated_trans_tests/196_FUr_U.out1L
-rw-r--r--utils/generated_trans_tests/197_FUm_U.in2L
-rw-r--r--utils/generated_trans_tests/197_FUm_U.out1L
-rw-r--r--utils/generated_trans_tests/198_FUr_R.in2L
-rw-r--r--utils/generated_trans_tests/198_FUr_R.out1L
-rw-r--r--utils/generated_trans_tests/199_FUm_R.in2L
-rw-r--r--utils/generated_trans_tests/199_FUm_R.out1L
-rw-r--r--utils/generated_trans_tests/200_FUr_F.in2L
-rw-r--r--utils/generated_trans_tests/200_FUr_F.out1L
-rw-r--r--utils/generated_trans_tests/201_FUm_F.in2L
-rw-r--r--utils/generated_trans_tests/201_FUm_F.out1L
-rw-r--r--utils/generated_trans_tests/202_FRr_U.in2L
-rw-r--r--utils/generated_trans_tests/202_FRr_U.out1L
-rw-r--r--utils/generated_trans_tests/203_FRm_U.in2L
-rw-r--r--utils/generated_trans_tests/203_FRm_U.out1L
-rw-r--r--utils/generated_trans_tests/204_FRr_R.in2L
-rw-r--r--utils/generated_trans_tests/204_FRr_R.out1L
-rw-r--r--utils/generated_trans_tests/205_FRm_R.in2L
-rw-r--r--utils/generated_trans_tests/205_FRm_R.out1L
-rw-r--r--utils/generated_trans_tests/206_FRr_F.in2L
-rw-r--r--utils/generated_trans_tests/206_FRr_F.out1L
-rw-r--r--utils/generated_trans_tests/207_FRm_F.in2L
-rw-r--r--utils/generated_trans_tests/207_FRm_F.out1L
-rw-r--r--utils/generated_trans_tests/208_FDr_U.in2L
-rw-r--r--utils/generated_trans_tests/208_FDr_U.out1L
-rw-r--r--utils/generated_trans_tests/209_FDm_U.in2L
-rw-r--r--utils/generated_trans_tests/209_FDm_U.out1L
-rw-r--r--utils/generated_trans_tests/210_FDr_R.in2L
-rw-r--r--utils/generated_trans_tests/210_FDr_R.out1L
-rw-r--r--utils/generated_trans_tests/211_FDm_R.in2L
-rw-r--r--utils/generated_trans_tests/211_FDm_R.out1L
-rw-r--r--utils/generated_trans_tests/212_FDr_F.in2L
-rw-r--r--utils/generated_trans_tests/212_FDr_F.out1L
-rw-r--r--utils/generated_trans_tests/213_FDm_F.in2L
-rw-r--r--utils/generated_trans_tests/213_FDm_F.out1L
-rw-r--r--utils/generated_trans_tests/214_FLr_U.in2L
-rw-r--r--utils/generated_trans_tests/214_FLr_U.out1L
-rw-r--r--utils/generated_trans_tests/215_FLm_U.in2L
-rw-r--r--utils/generated_trans_tests/215_FLm_U.out1L
-rw-r--r--utils/generated_trans_tests/216_FLr_R.in2L
-rw-r--r--utils/generated_trans_tests/216_FLr_R.out1L
-rw-r--r--utils/generated_trans_tests/217_FLm_R.in2L
-rw-r--r--utils/generated_trans_tests/217_FLm_R.out1L
-rw-r--r--utils/generated_trans_tests/218_FLr_F.in2L
-rw-r--r--utils/generated_trans_tests/218_FLr_F.out1L
-rw-r--r--utils/generated_trans_tests/219_FLm_F.in2L
-rw-r--r--utils/generated_trans_tests/219_FLm_F.out1L
-rw-r--r--utils/generated_trans_tests/220_BUr_U.in2L
-rw-r--r--utils/generated_trans_tests/220_BUr_U.out1L
-rw-r--r--utils/generated_trans_tests/221_BUm_U.in2L
-rw-r--r--utils/generated_trans_tests/221_BUm_U.out1L
-rw-r--r--utils/generated_trans_tests/222_BUr_R.in2L
-rw-r--r--utils/generated_trans_tests/222_BUr_R.out1L
-rw-r--r--utils/generated_trans_tests/223_BUm_R.in2L
-rw-r--r--utils/generated_trans_tests/223_BUm_R.out1L
-rw-r--r--utils/generated_trans_tests/224_BUr_F.in2L
-rw-r--r--utils/generated_trans_tests/224_BUr_F.out1L
-rw-r--r--utils/generated_trans_tests/225_BUm_F.in2L
-rw-r--r--utils/generated_trans_tests/225_BUm_F.out1L
-rw-r--r--utils/generated_trans_tests/226_BRr_U.in2L
-rw-r--r--utils/generated_trans_tests/226_BRr_U.out1L
-rw-r--r--utils/generated_trans_tests/227_BRm_U.in2L
-rw-r--r--utils/generated_trans_tests/227_BRm_U.out1L
-rw-r--r--utils/generated_trans_tests/228_BRr_R.in2L
-rw-r--r--utils/generated_trans_tests/228_BRr_R.out1L
-rw-r--r--utils/generated_trans_tests/229_BRm_R.in2L
-rw-r--r--utils/generated_trans_tests/229_BRm_R.out1L
-rw-r--r--utils/generated_trans_tests/230_BRr_F.in2L
-rw-r--r--utils/generated_trans_tests/230_BRr_F.out1L
-rw-r--r--utils/generated_trans_tests/231_BRm_F.in2L
-rw-r--r--utils/generated_trans_tests/231_BRm_F.out1L
-rw-r--r--utils/generated_trans_tests/232_BDr_U.in2L
-rw-r--r--utils/generated_trans_tests/232_BDr_U.out1L
-rw-r--r--utils/generated_trans_tests/233_BDm_U.in2L
-rw-r--r--utils/generated_trans_tests/233_BDm_U.out1L
-rw-r--r--utils/generated_trans_tests/234_BDr_R.in2L
-rw-r--r--utils/generated_trans_tests/234_BDr_R.out1L
-rw-r--r--utils/generated_trans_tests/235_BDm_R.in2L
-rw-r--r--utils/generated_trans_tests/235_BDm_R.out1L
-rw-r--r--utils/generated_trans_tests/236_BDr_F.in2L
-rw-r--r--utils/generated_trans_tests/236_BDr_F.out1L
-rw-r--r--utils/generated_trans_tests/237_BDm_F.in2L
-rw-r--r--utils/generated_trans_tests/237_BDm_F.out1L
-rw-r--r--utils/generated_trans_tests/238_BLr_U.in2L
-rw-r--r--utils/generated_trans_tests/238_BLr_U.out1L
-rw-r--r--utils/generated_trans_tests/239_BLm_U.in2L
-rw-r--r--utils/generated_trans_tests/239_BLm_U.out1L
-rw-r--r--utils/generated_trans_tests/240_BLr_R.in2L
-rw-r--r--utils/generated_trans_tests/240_BLr_R.out1L
-rw-r--r--utils/generated_trans_tests/241_BLm_R.in2L
-rw-r--r--utils/generated_trans_tests/241_BLm_R.out1L
-rw-r--r--utils/generated_trans_tests/242_BLr_F.in2L
-rw-r--r--utils/generated_trans_tests/242_BLr_F.out1L
-rw-r--r--utils/generated_trans_tests/243_BLm_F.in2L
-rw-r--r--utils/generated_trans_tests/243_BLm_F.out1L
-rw-r--r--utils/transform_moves.txt95L