pecos_core/
lib.rs

1// Copyright 2024 The PECOS Developers
2//
3// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
4// in compliance with the License.You may obtain a copy of the License at
5//
6//     https://www.apache.org/licenses/LICENSE-2.0
7//
8// Unless required by applicable law or agreed to in writing, software distributed under the License
9// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
10// or implied. See the License for the specific language governing permissions and limitations under
11// the License.
12
13mod sets;
14mod sims_rngs;
15
16pub use sets::element::{Element, IndexableElement};
17pub use sets::set::Set;
18pub use sets::vec_set::VecSet;
19
20pub use crate::sims_rngs::chacha_rng::{ChaCha12Rng, ChaCha20Rng, ChaCha8Rng};
21pub use crate::sims_rngs::choices::Choices;
22pub use crate::sims_rngs::cyclic_rng::{CyclicRng, CyclicSeed};
23// pub use crate::sims_rngs::mock_rng::MockRng;
24pub use crate::sims_rngs::sim_rng::SimRng;
25pub use crate::sims_rngs::xoshiro_rng::{
26    Xoshiro128PlusPlus, Xoshiro128StarStar, Xoshiro256PlusPlus, Xoshiro256StarStar,
27    Xoshiro512PlusPlus, Xoshiro512StarStar,
28};