-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
13 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
//! Numeric identifiers for variables and Boolean literals | ||
pub use imctk_lit::{lit::Lit, pol::Pol, var::Var}; | ||
pub use imctk_lit::{Lit, Pol, Var}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
//! Numeric identifiers for variables and Boolean literals | ||
#![allow(missing_docs, dead_code)] // FIXME prototyping | ||
mod lit; | ||
mod pol; | ||
mod var; | ||
|
||
pub mod lit; | ||
pub mod pol; | ||
pub mod var; | ||
pub use lit::Lit; | ||
pub use pol::{Negate, NegateInPlace, Pol}; | ||
pub use var::Var; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters