Skip to content

Commit

Permalink
[baby_fto.rs] Adjust quantum transitions to prevent adjacent L and …
Browse files Browse the repository at this point in the history
…`BR` moves.
  • Loading branch information
lgarron committed Mar 1, 2025
1 parent b68275f commit b402ce8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rs/scramble/puzzles/baby_fto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ pub fn scramble_baby_fto() -> Alg {
IDFSearchConstructionOptions {
canonical_fsm_construction_options: CanonicalFSMConstructionOptions {
forbid_transitions_by_quantums_either_direction: HashSet::from([(
QuantumMove::new("U", None),
QuantumMove::new("D", None),
QuantumMove::new("L", None),
QuantumMove::new("BR", None),
)]),
},
..Default::default()
Expand Down

0 comments on commit b402ce8

Please sign in to comment.