-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix typo * Ignore .idea * Add test feature models * Add ConsistencyChecker and new version of PySATModel supporting diagnosis tasks * Functions return a list instead of a CNF * Add FastDiag and QuickXPlain * Add documentation * Migrate to new package * Support Configuration * Support Configuration * Clean up * improve diagnosis messages * use assumptions in solver.solve() * done diagnosis with assumptions and better result messages * Add HSDAG * Remove D * Add documentation * Fix bug * Fix typo * fix: refactoring to optimize code in execution. Only save names when needed for diagnosis * fix: finishing the separation, still need to workout the method call * fix: decouping diagnosis task from basic pysat operations * Fix cracks appearing after decoupling diagnosis task from basic pysat operations. * Fix errors/problems detected by prospector * Fix errors/problems detected by mypy --------- Co-authored-by: José A. Galindo <[email protected]>
- Loading branch information
Showing
21 changed files
with
573 additions
and
491 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 |
---|---|---|
|
@@ -3,7 +3,7 @@ test-warnings: true | |
doc-warnings: false | ||
|
||
ignore-paths: | ||
- env | ||
- venv | ||
- tests | ||
- build | ||
|
||
|
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
2 changes: 2 additions & 0 deletions
2
flamapy/metamodels/pysat_diagnosis_metamodel/operations/__init__.py
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 |
---|---|---|
@@ -1,8 +1,10 @@ | ||
from .glucose3_abstract_identifier import Glucose3AbstractIdentifier | ||
from .glucose3_conflict import Glucose3Conflict | ||
from .glucose3_diagnosis import Glucose3Diagnosis | ||
|
||
|
||
__all__ = [ | ||
'Glucose3AbstractIdentifier', | ||
'Glucose3Diagnosis', | ||
'Glucose3Conflict' | ||
] |
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,9 @@ | ||
from .checker import ConsistencyChecker | ||
from .fastdiag import FastDiag | ||
from .quickxplain import QuickXPlain | ||
|
||
__all__ = [ | ||
"ConsistencyChecker", | ||
"FastDiag", | ||
"QuickXPlain" | ||
] |
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
Oops, something went wrong.