//	@Ignore
 @Test(timeout = 12 * 1000) // 12 sec
 public final void test1() {
   Algorithm a = new Bisection_UnsL_CBtC_AllEqS();
   final int dim = rnd.nextInt(5) + 1;
   RealInterval area = new RealInterval(-70, 200);
   test.f_DeJong_Zero(a, dim, area);
 }
 //	@Ignore
 @Test(timeout = 12 * 1000) // 12 sec
 public final void test4() {
   Algorithm a = new Bisection_UnsL_RndC_AllEqS();
   RealInterval area = new RealInterval(-1, 1);
   test.f_SixHumpCamelBack(a, area);
 }
 //	@Ignore
 @Test(timeout = 12 * 1000) // 12 sec
 public final void test3() {
   Algorithm a = new Bisection_UnsL_RndC_AllEqS();
   RealInterval area = new RealInterval(-10, 10);
   test.f_Rastrigin10(a, area);
 }
 //	@Ignore
 @Test(timeout = 12 * 1000) // 12 sec
 public final void test2() {
   Algorithm a = new Bisection_UnsL_RndC_AllEqS();
   RealInterval area = new RealInterval(-9, 16);
   test.f_Price5_Zero(a, area);
 }
 @Test(timeout = 12 * 1000) // 12 sec
 public final void test11() {
   Algorithm a = new Bisection_UnsL_RndC_AllEqS();
   final int dim = 5;
   test.f_DeJong_NotSim(a, dim);
 }