[][src]Struct splr::config::Config

pub struct Config {
    pub clause_limit: usize,
    pub elim_grow_limit: usize,
    pub elim_lit_limit: usize,
    pub restart_asg_len: usize,
    pub restart_lbd_len: usize,
    pub restart_threshold: f64,
    pub restart_blocking: f64,
    pub restart_step: usize,
    pub cnf_filename: PathBuf,
    pub output_dirname: PathBuf,
    pub result_filename: PathBuf,
    pub proof_filename: PathBuf,
    pub use_log: bool,
    pub without_elim: bool,
    pub without_adaptive_restart: bool,
    pub without_adaptive_strategy: bool,
    pub without_deep_search: bool,
    pub use_certification: bool,
    pub timeout: f64,
    pub dump_interval: usize,
}

Configuration built from command line options

Fields

clause_limit: usize

soft limit of #clauses (24MC~4GB)

elim_grow_limit: usize

grow limit of #clauses by v-elim

elim_lit_limit: usize

#literals in a clause by v-elim

restart_asg_len: usize

length for assignment average

restart_lbd_len: usize

length for LBD average

restart_threshold: f64

forcing restart threshold

restart_blocking: f64

blocking restart threshold

restart_step: usize

#conflicts between restarts

cnf_filename: PathBuf

a DIMACS format CNF file

output_dirname: PathBuf

output directory

result_filename: PathBuf

result filename/stdout

proof_filename: PathBuf

filename for DRAT cert.

use_log: bool

Uses Glucose-like progress report

without_elim: bool

Disables exhaustive simplification

without_adaptive_restart: bool

Disables dynamic restart adaptation

without_adaptive_strategy: bool

Disables dynamic strategy adaptation

without_deep_search: bool

Disables deep search mode

use_certification: bool

Writes a DRAT UNSAT certification file

timeout: f64

CPU time limit in sec.

dump_interval: usize

interval for dumpping stat data

Trait Implementations

impl Default for Config[src]

impl Clone for Config[src]

impl<T> From<T> for Config where
    PathBuf: From<T>, 
[src]

impl Debug for Config[src]

impl StructOpt for Config[src]

Auto Trait Implementations

impl Send for Config

impl Unpin for Config

impl Sync for Config

impl UnwindSafe for Config

impl RefUnwindSafe for Config

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]