aminus 1.0.1-beta

genshin stat and damage calculation library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14

pub mod engine{
    /// object to store a plan to lazelly execute compution.
    /// scedular automatically optimizes execution plan and prevents cycles
    pub struct ExecutionScedular {
        //stores entry node of DAG
        //store optmizers to apply
        //stores statables to use for computation
    }

    pub impl ExecutionScedular {

    }
}