Skip to content
Snippets Groups Projects
Select Git revision
  • b4ea5aaddec767f6601847c9108f12757a2f7fcb
  • main default protected
  • melissa
  • yanis
  • variant
5 results

Matrix.java

Blame
  • Forked from COUETOUX Basile / FirefighterStarter
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Operator.java 146 B
    package Formule;
    
    public interface Operator {
        String Symbol();
        double initialValue();
    
        double cumulative(double acc, double value);
    }