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
//! Which formula's variables a numbering is expressed over.
//!
//! Preprocessing renumbers, so the same `u32` names a different variable
//! depending on which file it came from. Every representation that crosses one
//! of those boundaries — the projection show set, the literal-weight table — is
//! keyed by one of the markers here, so a value expressed over one formula's
//! variables cannot be handed to a consumer expecting another's.
/// Implementation detail of [`Space`]: its supertrait, which only the three
/// markers below implement, so the set of variable spaces is closed.
pub
/// A variable space a numbering can be expressed in.
///
/// Sealed: the three markers below are all there are, and a fourth space would
/// be a fourth numbering for this crate to keep straight.
/// The input CNF's own variable ids, as the file numbers them.
;
/// `reduced.cnf`'s variable ids — what preprocessing renumbered the survivors
/// into.
;
/// One component's dense `0..num_vars` ids, the space `components/compNNN.cnf`
/// and its vtree are written in.
;