zero_sum/analysis/
mod.rs

1//
2// This file is part of zero_sum.
3//
4// zero_sum is free software: you can redistribute it and/or modify
5// it under the terms of the GNU General Public License as published by
6// the Free Software Foundation, either version 3 of the License, or
7// (at your option) any later version.
8//
9// zero_sum is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13//
14// You should have received a copy of the GNU General Public License
15// along with zero_sum. If not, see <http://www.gnu.org/licenses/>.
16//
17// Copyright 2016-2017 Chris Foster
18//
19
20//! Contains the traits and tools to provide analysis of zero-sum games.
21
22pub mod search;
23
24pub use self::evaluator::{Evaluation, Evaluator};
25pub use self::extrapolatable::Extrapolatable;
26
27#[macro_use]
28mod evaluator;
29mod extrapolatable;