[−][src]Struct rate_common::parser::FixedSizeHashTable
A hash table with a fixed size
This should work exactly like the one used in drat-trim.
Given that we expect the number of clauses in the hash table
not to exceed a couple million this should be faster and leaner than
DynamicHashTable.
Methods
impl FixedSizeHashTable[src]
pub fn new() -> FixedSizeHashTable[src]
Allocate the hash table.
Trait Implementations
impl HeapSpace for FixedSizeHashTable[src]
fn heap_space(&self) -> usize[src]
impl HashTable for FixedSizeHashTable[src]
fn add_clause(&mut self, clause: Clause)[src]
fn find_equal_clause(&mut self, needle: Clause, delete: bool) -> Option<Clause>[src]
fn clause_is_active(&self, needle: Clause) -> bool[src]
fn delete_clause(&mut self, needle: Clause) -> bool[src]
impl<'a> IntoIterator for &'a FixedSizeHashTable[src]
Auto Trait Implementations
impl Send for FixedSizeHashTable
impl Unpin for FixedSizeHashTable
impl Sync for FixedSizeHashTable
impl UnwindSafe for FixedSizeHashTable
impl RefUnwindSafe for FixedSizeHashTable
Blanket Implementations
impl<T> HeapSpace for T where
T: Copy, [src]
T: Copy,
fn heap_space(&Self) -> usize[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,