inertia_algebra/lib.rs
1// Copyright 2013-2014 The Algebra Developers.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15//! Traits for algebra.
16
17/*
18#![deny(non_camel_case_types)]
19#![deny(unused_parens)]
20#![deny(non_upper_case_globals)]
21#![deny(unused_results)]
22#![deny(missing_docs)]
23*/
24#![cfg_attr(not(feature = "std"), no_std)]
25
26#[allow(unused_imports)]
27#[macro_use]
28extern crate approx;
29
30#[cfg(not(feature = "std"))]
31extern crate core as std;
32
33pub mod ops;
34
35#[cfg(feature = "structures")]
36pub mod operator;
37#[cfg(feature = "structures")]
38pub use operator::*;
39
40#[cfg(feature = "structures")]
41pub mod properties;
42#[cfg(feature = "structures")]
43pub use properties::*;
44
45#[cfg(feature = "structures")]
46pub mod structures;
47#[cfg(feature = "structures")]
48pub use structures::*;
49
50#[doc(hidden)]
51#[cfg(feature = "structures")]
52pub mod wrapper;
53