Package org.ytoh.configurations.util

Examples of org.ytoh.configurations.util.ComponentInfo


        /**
         *
         * @return
         */
        public ExperimentRun build() {
            final ComponentInfo functionComponent = getComponentInfo(function);
            final ComponentInfo methodComponent = getComponentInfo(method);
            final ComponentInfo solverComponent = getComponentInfo(solver);
            final List<ComponentInfo> stopConditonComponents = new ArrayList<ComponentInfo>();

            for (StopCondition stopCondition : method.getStopConditions()) {
                stopConditonComponents.add(getComponentInfo(stopCondition));
            }
View Full Code Here

TOP

Related Classes of org.ytoh.configurations.util.ComponentInfo

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.