Skip to content

Commit

Permalink
Add long recurs
Browse files Browse the repository at this point in the history
  • Loading branch information
nickdrozd committed Oct 22, 2024
1 parent 46b5695 commit b48115d
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions test/prog_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -566,9 +566,12 @@
}

RECUR_TOO_SLOW = {
"1RB 0LA 0RC 0RD 1LA 0RA 0LC 1RA": ( 22269896, 2353542),
"1RB 0LA 0RC 1LA 1RD 0RD 1LB 1RB": ( 24378294, 2575984),
"1RB 0LC 1RD 1LC 0LA 1LB 1LC 0RD": (309086174, 7129704),
"1RB 0LA 0RC 0RD 1LA 0RA 0LC 1RA": ( 22_269_896, 2_353_542),
"1RB 0LA 0RC 1LA 1RD 0RD 1LB 1RB": ( 24_378_294, 2_575_984),
"1RB 0LC 1RD 1LC 0LA 1LB 1LC 0RD": ( 309_086_174, 7_129_704),
"1RB 0LA 0RC 1RD 1LD 0RB 1LA 1RB": ( 5_248_647_886, 212_081_736),
"1RB 1LC 0LA 1RD 1LA 0LC 0RB 0RD": ( 59_560_191_024, 483_328),
"1RB 1LC 0LA 1RD 0RB 0LC 1LA 0RD": (119_120_230_102, 966_716),
}

UNDEFINED = {
Expand Down Expand Up @@ -1366,6 +1369,9 @@
"1RB 1LB 0LB 1RC 1RD 0RC 1LA ...",
"1RB 0LA 1LC ... 0LD 0LC 1RD 0RA",
"1RB 1LA 0LA 1LC 0LD 0LC 1RD 1RB",
"1RB 0LA 0RC 1RD 1LD 0RB 1LA 1RB",
"1RB 1LC 0LA 1RD 0RB 0LC 1LA 0RD",
"1RB 1LC 0LA 1RD 1LA 0LC 0RB 0RD",

"1RB 3LA 1LA ... 1LB 2RB 0LA 0RB",
"1RB 0LA 1RA 0LB 2LB 3LA 2RB 0RA",
Expand Down

0 comments on commit b48115d

Please sign in to comment.