Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
ickk committed Sep 14, 2023
1 parent 5ab797c commit 2839523
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ega/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
#![cfg_attr(not(any(feature = "std", test, doctest)), no_std)]

mod operators;
mod values;
mod optional_features;
mod values;

pub use operators::*;
pub use values::*;
Expand Down
4 changes: 2 additions & 2 deletions ega/src/operators/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,18 @@ mod geometric_product;
mod grade_select;
mod hodge_dual;
mod ideal_norm;
mod partial_eq;
mod inverse;
mod join;
mod meet;
mod mul;
mod neg;
mod norm;
mod normalise;
mod partial_eq;
mod reverse;
mod scalar_product;
mod sub;

pub use partial_eq::PartialEq;
pub use add::Add;
pub use conjugate::Conjugate;
pub use div::Div;
Expand All @@ -34,6 +33,7 @@ pub use mul::Mul;
pub use neg::Neg;
pub use norm::{Norm, NormSquared};
pub use normalise::Normalise;
pub use partial_eq::PartialEq;
pub use reverse::Reverse;
pub use scalar_product::ScalarProduct;
pub use sub::Sub;
Expand Down

0 comments on commit 2839523

Please sign in to comment.