-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extract solvers to goblint_solver dune library
- Loading branch information
Showing
9 changed files
with
65 additions
and
42 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
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
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
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
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
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
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
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,22 @@ | ||
(include_subdirs no) | ||
|
||
(library | ||
(name goblint_solver) | ||
(public_name goblint.solver) | ||
(libraries | ||
batteries.unthreaded | ||
goblint_std | ||
goblint_common | ||
goblint_domain | ||
goblint_constraint | ||
goblint_incremental | ||
goblint-cil) | ||
(flags :standard -open Goblint_std) | ||
(preprocess | ||
(pps | ||
ppx_deriving.std | ||
ppx_deriving_hash | ||
ppx_deriving_yojson)) | ||
(instrumentation (backend bisect_ppx))) | ||
|
||
(documentation) |
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,31 @@ | ||
(** Generic solvers for {{!ConstrSys.MonSystem} (side-effecting) constraint systems}. *) | ||
|
||
(** {1 Top-down} | ||
The top-down solver family. *) | ||
|
||
module Td3 = Td3 | ||
module TopDown = TopDown | ||
module TopDown_term = TopDown_term | ||
module TopDown_space_cache_term = TopDown_space_cache_term | ||
module TopDown_deprecated = TopDown_deprecated | ||
|
||
(** {1 SLR} | ||
The SLR solver family. *) | ||
|
||
module SLRphased = SLRphased | ||
module SLRterm = SLRterm | ||
module SLR = SLR | ||
|
||
(** {1 Other} *) | ||
|
||
module EffectWConEq = EffectWConEq | ||
module Worklist = Worklist | ||
module Generic = Generic | ||
module Selector = Selector | ||
|
||
module PostSolver = PostSolver | ||
module LocalFixpoint = LocalFixpoint | ||
module SolverStats = SolverStats | ||
module SolverBox = SolverBox |