summaryrefslogtreecommitdiffstats
path: root/vendor/varisat/src/tmp.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/varisat/src/tmp.rs')
-rw-r--r--vendor/varisat/src/tmp.rs35
1 files changed, 35 insertions, 0 deletions
diff --git a/vendor/varisat/src/tmp.rs b/vendor/varisat/src/tmp.rs
new file mode 100644
index 000000000..a822d7fe8
--- /dev/null
+++ b/vendor/varisat/src/tmp.rs
@@ -0,0 +1,35 @@
+//! Temporary data.
+use varisat_formula::Lit;
+
+/// Temporary data used by various parts of the solver.
+///
+/// Make sure to check any documented invariants when using this. Also make sure to check all
+/// existing users when adding invariants.
+#[derive(Default)]
+pub struct TmpData {
+ pub lits: Vec<Lit>,
+ pub lits_2: Vec<Lit>,
+}
+
+/// Temporary data that is automatically resized.
+///
+/// This contains buffers that are automatically resized when the variable count of the solver
+/// changes. They are also always kept in a clean state, so using them doesn't come with costs
+/// proportional to the number of variables.
+///
+/// Make sure to check any documented invariants when using this. Also make sure to check all
+/// existing users when adding invariants.
+#[derive(Default)]
+pub struct TmpFlags {
+ /// A boolean for each literal.
+ ///
+ /// Reset to all-false, keep size.
+ pub flags: Vec<bool>,
+}
+
+impl TmpFlags {
+ /// Update structures for a new variable count.
+ pub fn set_var_count(&mut self, count: usize) {
+ self.flags.resize(count * 2, false);
+ }
+}