pub struct Clause {
lbd: u32,
literals: Vec<Literal>,
garbage: bool,
}Expand description
子句(文字析取)结构。
literals:子句中的文字序列;lbd:学习子句质量指标(Literal Block Distance);garbage:删除标记(当前版本预留位)。
Fields§
§lbd: u32学习子句的 LBD 指标。
literals: Vec<Literal>子句的文字列表。
garbage: bool垃圾回收标志位。
Implementations§
Trait Implementations§
Source§impl<'a> IntoIterator for &'a Clause
impl<'a> IntoIterator for &'a Clause
Auto Trait Implementations§
impl Freeze for Clause
impl RefUnwindSafe for Clause
impl Send for Clause
impl Sync for Clause
impl Unpin for Clause
impl UnsafeUnpin for Clause
impl UnwindSafe for Clause
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more