-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
solver, error: remove dependency on 'fmt', and expose error constants
Fixes #1.
- Loading branch information
Showing
2 changed files
with
16 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package casso | ||
|
||
import "errors" | ||
|
||
var ( | ||
ErrBadPriority = errors.New("priority must be non-negative and not required for edit variable") | ||
ErrNotEditVariable = errors.New("symbol is not yet registered as an edit variable") | ||
ErrBadTermInConstraint = errors.New("one of the terms in the constraint references a nil symbol") | ||
ErrBadConstraintMarker = errors.New("symbol is not registered to refer to a constraint") | ||
ErrBadDummyVariable = errors.New("constraint is unsatisfiable: non-zero dummy variable") | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters