add flag for disabling global cache and printing proof trees on error
This commit is contained in:
parent
8931edf746
commit
040aa58d0a
8 changed files with 175 additions and 48 deletions
|
@ -745,6 +745,14 @@ pub enum TraitSolver {
|
|||
NextCoherence,
|
||||
}
|
||||
|
||||
#[derive(Default, Debug, Copy, Clone, Hash, PartialEq, Eq)]
|
||||
pub enum SolverProofTreeCondition {
|
||||
#[default]
|
||||
Never,
|
||||
Always,
|
||||
OnError,
|
||||
}
|
||||
|
||||
pub enum Input {
|
||||
/// Load source code from a file.
|
||||
File(PathBuf),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue