All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tensorics.expression.EvaluationStatus Maven / Gradle / Ivy

Go to download

Tensoric expression is able to solve an expression tree. Much like a tree coming from a traditional equation, where both operations and operands can be objects and can implement custom behavior

The newest version!
/**
 * Copyright (c) 2016 European Organisation for Nuclear Research (CERN), All Rights Reserved.
 */

package org.tensorics.expression;

public enum EvaluationStatus {
    EVALUATED,
    NOT_EVALUATED;

    public static EvaluationStatus fromBoolean(boolean isExecuted) {
        return isExecuted ? EVALUATED : NOT_EVALUATED;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy