logicng 0.1.0-alpha.3

A Library for Creating, Manipulating, and Solving Boolean Formulas
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
use std::borrow::Cow;
use std::fmt::{Display, Formatter};

use crate::formulas::{EncodedFormula, FormulaFactory, Variable};

use super::formula::ToFormula;
use super::formula_cache::formula_encoding::{Encoding, FormulaEncoding};
use super::{FormulaType, VarType};

/// Specifies all types of literals.
#[derive(Copy, Clone, Hash, Eq, PartialEq, Ord, PartialOrd, Debug)]
pub enum LitType {
    /// Positive literal
    Pos(VarType),
    /// Negative literal
    Neg(VarType),
}

/// Boolean literal.
///
/// Literals are besides the constants `True` and `False` and
/// cardinality/pseudo-boolean constraints the atomic formulas in _LogicNG_.
///
/// A literal consists of a [`Variable`] and its phase (also sign or polarity in
/// the literature).
///
/// `Literal` is the explicit type for literals. A literal can also be in the
/// form of an [`EncodedFormula`], and a [`Variable`] is in many contexts used as a
/// positive literal. When deciding for a type, you want to use the most
/// specific type. For example, if you only need literals, you should use the
/// explicit type `Literal`, but if you allow a mix of multiple formula types,
/// it is easier to use `EncodedFormula`.
///
/// There are multiple ways to create a new `Literal`:
/// - If you new a new literal from scratch, you can use the [`FormulaFactory`]
///   function [`lit()`] to get a new instance of the explicit type, [`literal()`]
///   to get it directly as a `EncodedFormula`.
/// - If you already have a `Variable` that you want to use as a literal, you
///   can use the constructor [`new()`] of `Literal`.
/// - If you already have a literal as a `EncodedFormula`, you can use the
///   [`as_literal()`] function to convert it.
///
/// Note that, the bool `phase` describes the value of the literal. So `true`
/// will yield a positive literal, and `false` a negated literal.
///
/// `Literal` can only be used in the context of a `FormulaFactory`, since the
/// name is stored there.
///
/// [`lit()`]: FormulaFactory::lit
/// [`literal()`]: FormulaFactory::literal
/// [`new()`]: Literal::new
/// [`as_literal()`]: EncodedFormula::as_literal
/// [`FormulaFactory`]: super::FormulaFactory
#[derive(Hash, Eq, PartialEq, Copy, Clone, Debug, Ord, PartialOrd)]
pub enum Literal {
    /// Positive literal
    Pos(Variable),
    /// Negative literal
    Neg(Variable),
}

impl Literal {
    /// Creates a new `Literal` from a [`Variable`] and a `phase`. `phase`
    /// describes the value of the literal. So `true` will yield a positive
    /// literal, and `false` a negated literal.
    ///
    /// If you want to create a literal without an existing `Variable`, you can
    /// use the function [`lit()`] in [`FormulaFactory`].
    ///
    /// Note that, such a `Literal` should only be used in the context of the
    /// `FormulaFactory`, which was used to create it or the passed variable.
    ///
    /// [`lit()`]: FormulaFactory::lit
    /// [`FormulaFactory`]: super::FormulaFactory
    ///
    /// # Examples
    ///
    /// Basic usage:
    ///
    /// ```
    /// # use logicng::formulas::FormulaFactory;
    /// # use logicng::formulas::Literal;
    /// let f = FormulaFactory::new();
    ///
    /// let var = f.var("a");
    /// let literal1 = Literal::new(var, true); // "a"
    /// let literal2 = Literal::new(var, false); // "~a"
    /// ```
    pub const fn new(variable: Variable, phase: bool) -> Self {
        if phase {
            Self::Pos(variable)
        } else {
            Self::Neg(variable)
        }
    }

    /// Returns the inherit variable of this literal.
    ///
    /// # Examples
    ///
    /// Basic usage:
    ///
    /// ```
    /// # use logicng::formulas::FormulaFactory;
    /// # use logicng::formulas::Literal;
    /// let f = FormulaFactory::new();
    ///
    /// let var = f.var("a");
    /// let literal = Literal::new(var, true);
    ///
    /// assert_eq!(literal.variable(), var);
    /// ```
    pub const fn variable(&self) -> Variable {
        match self {
            Self::Pos(v) | Self::Neg(v) => *v,
        }
    }

    /// Returns the phase of this literal.
    ///
    /// # Examples
    ///
    /// Basic usage:
    ///
    /// ```
    /// # use logicng::formulas::FormulaFactory;
    /// # use logicng::formulas::Literal;
    /// let f = FormulaFactory::new();
    ///
    /// let var = f.var("a");
    /// let literal1 = Literal::new(var, true);
    /// let literal2 = Literal::new(var, false);
    ///
    /// assert_eq!(literal1.phase(), true);
    /// assert_eq!(literal2.phase(), false);
    /// ```
    pub const fn phase(&self) -> bool {
        match self {
            Self::Pos(_) => true,
            Self::Neg(_) => false,
        }
    }

    /// Returns the name of the variable of this literal.
    ///
    /// # Examples
    ///
    /// Basic usage:
    ///
    /// ```
    /// # use logicng::formulas::FormulaFactory;
    /// # use logicng::formulas::Literal;
    /// # use std::borrow::Cow;
    /// let f = FormulaFactory::new();
    ///
    /// let var = f.var("a");
    /// let literal = Literal::new(var, true);
    ///
    /// assert_eq!(literal.name(&f), Cow::from("a"));
    /// ```
    pub fn name<'a>(&self, f: &'a FormulaFactory) -> Cow<'a, str> {
        self.variable().name(f)
    }

    /// Returns the name of the variable of this literal, if the variable is a
    /// auxiliary variable. Otherwise, it will return `None`.
    ///
    /// # Example
    ///
    /// Basic usage:
    /// ```
    /// # use logicng::formulas::FormulaFactory;
    /// let f = FormulaFactory::new();
    ///
    /// let aux_name = format!("@RESERVED_{}_CNF_0", f.id());
    /// let aux_lit = f.parsed_variable(&aux_name).as_literal().unwrap();
    /// assert_eq!(aux_lit.aux_name(&f), Some(aux_name));
    /// ```
    pub fn aux_name(&self, f: &FormulaFactory) -> Option<String> {
        self.variable().aux_name(f)
    }

    /// Returns a new literal with the phase inverted.
    ///
    /// # Examples
    ///
    /// Basic usage:
    ///
    /// ```
    /// # use logicng::formulas::FormulaFactory;
    /// # use logicng::formulas::Literal;
    /// let f = FormulaFactory::new();
    ///
    /// let var = f.var("a");
    /// let literal1 = Literal::new(var, true);
    /// let literal2 = Literal::new(var, false);
    ///
    /// assert_eq!(literal1.negate(), literal2);
    /// assert_eq!(literal1, literal2.negate());
    /// ```
    #[must_use]
    pub const fn negate(&self) -> Self {
        Self::new(self.variable(), !self.phase())
    }

    /// Returns this literal as a `StringLiteral`.
    ///
    /// # Examples
    ///
    /// Basic usage:
    ///
    /// ```
    /// # use logicng::formulas::FormulaFactory;
    /// # use logicng::formulas::Literal;
    /// # use logicng::formulas::StringLiteral;
    /// let f = FormulaFactory::new();
    ///
    /// let var = f.var("a");
    /// let literal = Literal::new(var, true);
    ///
    /// assert_eq!(literal.to_string_lit(&f), StringLiteral::new("a", true));
    /// ```
    pub fn to_string_lit<'a>(&self, f: &'a FormulaFactory) -> StringLiteral<'a> {
        StringLiteral { name: self.name(f), phase: self.phase() }
    }

    /// Converts this literal into a string representation.
    ///
    /// Strings obtained by this function, can also be parsed back again.
    ///
    /// # Examples
    ///
    /// Basic usage:
    ///
    /// ```
    /// # use logicng::formulas::FormulaFactory;
    /// # use logicng::formulas::Literal;
    /// let f = FormulaFactory::new();
    ///
    /// let var = f.var("a");
    /// let literal1 = Literal::new(var, true);
    /// let literal2 = Literal::new(var, false);
    ///
    /// assert_eq!(literal1.to_string(&f), "a");
    /// assert_eq!(literal2.to_string(&f), "~a");
    /// ```
    pub fn to_string(&self, f: &FormulaFactory) -> String {
        let sign = if self.phase() { "" } else { "~" };
        format!("{sign}{}", self.name(f))
    }
}

impl From<Literal> for EncodedFormula {
    fn from(lit: Literal) -> Self {
        let (index, ty) = match lit {
            Literal::Pos(var) => (var.index(), LitType::Pos(var.var_type())),
            Literal::Neg(var) => (var.index(), LitType::Neg(var.var_type())),
        };
        Self::from(FormulaEncoding::encode(index, FormulaType::Lit(ty), true))
    }
}

impl ToFormula for Literal {
    fn to_formula(&self, _: &FormulaFactory) -> EncodedFormula {
        (*self).into()
    }
}

/// Representation of a literals for external use.
///
/// [`Literal`] and [`Variable`] instances are bound to a [`FormulaFactory`], which
/// makes them unsuited for external use cases. `StringLiteral` allows you to
/// have literals and variables that are not bound to a `FormulaFactory`.
/// _LogicNG_ provides some functions to easily convert between those types.
#[derive(PartialOrd, PartialEq, Ord, Eq, Debug, Clone)]
pub struct StringLiteral<'a> {
    /// name of the literal
    pub name: Cow<'a, str>,
    /// phase of the literal
    pub phase: bool,
}

impl<'a> StringLiteral<'a> {
    /// Creates a new `StringLiteral` with the name passed as a `&str`.
    ///
    /// `phase` describes the value of the literal. So `true` will yield a
    /// positive literal, and `false` a negated literal.
    ///
    /// # Examples
    ///
    /// Basic usage:
    ///
    /// ```
    /// # use logicng::formulas::StringLiteral;
    ///
    /// let literal = StringLiteral::new("a", true);
    /// ```
    pub fn new(name: &'a str, phase: bool) -> Self {
        StringLiteral { name: Cow::from(name), phase }
    }

    /// Creates a new `StringLiteral` with a owned string for the name.
    ///
    /// `phase` describes the value of the literal. So `true` will yield a
    /// positive literal, and `false` a negated literal.
    ///
    /// # Examples
    ///
    /// Basic usage:
    ///
    /// ```
    /// # use logicng::formulas::StringLiteral;
    ///
    /// let name = String::from("a");
    /// let literal = StringLiteral::new_owned(name, true);
    /// ```
    pub fn new_owned(name: String, phase: bool) -> Self {
        StringLiteral { name: Cow::from(name), phase }
    }

    /// Creates a new `StringLiteral` representing a variable with the name as
    /// `&str`.
    ///
    /// This function is equivalent to `StringLiteral::new(name, true)`.
    ///
    /// # Examples
    ///
    /// Basic usage:
    ///
    /// ```
    /// # use logicng::formulas::StringLiteral;
    ///
    /// let literal = StringLiteral::new_variable("a");
    /// ```
    pub fn new_variable(name: &'a str) -> Self {
        StringLiteral::new(name, true)
    }

    /// Creates a new `StringLiteral` representing a variable with a owned
    /// string for the name.
    ///
    /// This function is equivalent to `StringLiteral::new_owned(name, true)`.
    ///
    /// # Examples
    ///
    /// Basic usage:
    ///
    /// ```
    /// # use logicng::formulas::StringLiteral;
    ///
    /// let name = String::from("a");
    /// let literal = StringLiteral::new_variable_owned(name);
    /// ```
    pub fn new_variable_owned(name: String) -> Self {
        StringLiteral::new_owned(name, true)
    }

    /// Converts this `StringLiteral` to a [`Literal`] in the given
    /// [`FormulaFactory`].
    ///
    /// # Examples
    ///
    /// Basic usage:
    ///
    /// ```
    /// # use logicng::formulas::FormulaFactory;
    /// # use logicng::formulas::Literal;
    /// # use logicng::formulas::StringLiteral;
    /// let f = FormulaFactory::new();
    ///
    /// let str_lit = StringLiteral::new("a", true);
    ///
    /// assert_eq!(str_lit.to_literal(&f), f.lit("a", true));
    /// ```
    pub fn to_literal(&self, f: &FormulaFactory) -> Literal {
        f.lit(&self.name, self.phase)
    }
}

/// Converts a type into a `StringLiteral`.
pub trait ToStringLiteral {
    /// Converts `self` into a `StringLiteral`.
    fn to_string_literal(self) -> StringLiteral<'static>;
}

impl ToStringLiteral for String {
    fn to_string_literal(self) -> StringLiteral<'static> {
        let trimmed = self.trim();
        if trimmed.starts_with('~') || trimmed.starts_with('-') {
            StringLiteral::new_owned(trimmed[1..].into(), false)
        } else {
            StringLiteral::new_owned(trimmed.into(), true)
        }
    }
}

impl<'a> ToFormula for StringLiteral<'a> {
    fn to_formula(&self, f: &FormulaFactory) -> EncodedFormula {
        f.literal(&self.name, self.phase)
    }
}

impl<'a> Display for StringLiteral<'a> {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}{}", if self.phase { "" } else { "~" }, self.name)
    }
}