Examples of factorsInstanceof()


Examples of org.jamesii.core.experiments.optimization.parameter.Configuration.factorsInstanceof()

        OptimizerFactory of = iOF.next();
        boolean ok = false;
        // IOrderedSet is needed of optimizer and supported by definition
        if (of.needsOrderedSet()) {
          Configuration c = parameter.getSubBlockValue("factors");
          if (c.factorsInstanceof(IQuantitativeVariable.class)) {
            ok = true;
          }
        } else {
          ok = true;
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.