Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ammrat13 committed Nov 24, 2023
1 parent 90e7ea0 commit bb3ba10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/theory/theory.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ type Solver interface {
// The Solvers variable stores a map from strings to the [Solver] they are
// associated with. We use this map when processing command-line arguments.
var Solvers = map[string]Solver{
"bf-baisc": &BF{BasicMode: true},
"bf-basic": &BF{BasicMode: true},
"bf-full": &BF{BasicMode: false},
"spfa-basic": &SPFA{BasicMode: true},
"spfa-full": &SPFA{BasicMode: false},
Expand Down

0 comments on commit bb3ba10

Please sign in to comment.