We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In case of:
public class Main4Run {
public static void main(String[] args) { Task t = new Task(EnumStopCriteria.CPU_TIME, 5000, 1000, 0, 0.0001, new Sphere(5)); //run problem Sphere Dimension 5, 3000 evaluations RandomWalkAlgorithm test = new RandomWalkAlgorithm(); try { System.out.println(test.execute(t)); //prints best result afrer 3000 runs } catch (StopCriteriaException e) { e.printStackTrace(); } }
} CPU Time is not working for single run!
The text was updated successfully, but these errors were encountered:
Initial time was not set. Added startTimer to Task.
Sorry, something went wrong.
No branches or pull requests
In case of:
public class Main4Run {
}
CPU Time is not working for single run!
The text was updated successfully, but these errors were encountered: