Package javaff.data

Examples of javaff.data.Metric


      }
     
    }

   
    Metric m = problem.metric;
    if (m != null && m.func instanceof NamedFunction && !(m.func instanceof TotalTimeFunction))
    {
      PrecedenceResourceGraph prg = (PrecedenceResourceGraph) graphs.get((NamedFunction) m.func);
      if (m.type == Metric.MAXIMIZE) prg.maximize();
      else if (m.type == Metric.MINIMIZE) prg.minimize();
View Full Code Here

TOP

Related Classes of javaff.data.Metric

Copyright © 2018 www.massapicom. 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.