Skip to content
Snippets Groups Projects
Select Git revision
  • 39f46b80d8b9c78a07f78ae3071e1adecaf2789a
  • main default protected
  • correction_video
  • going_further
  • ImprovedMouseInteraction
  • final2023
  • template
  • ModifGUI
8 results

Matrix.java

Blame
  • Forked from NAVES Guyslain / Game of life Template
    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);
    }