GithubHelp home page GithubHelp logo

Comments (4)

jschueller avatar jschueller commented on September 16, 2024

@Sceki do you mind looking at this one too ? its a bit similar, not on the bound constraints, but on the general eq/ineq constraints

from pagmo2.

Sceki avatar Sceki commented on September 16, 2024

@jschueller can you please post a minimal code to reproduce this error?

from pagmo2.

jschueller avatar jschueller commented on September 16, 2024

here:

#include <pagmo/algorithms/maco.hpp>
#include <pagmo/population.hpp>
#include <pagmo/problems/rosenbrock.hpp>
#include <pagmo/problems/unconstrain.hpp>

using namespace pagmo;

struct problem1 {
    vector_double fitness(const vector_double &x) const
    {
        const double g = 1.0 + 9.0 * (x[0] + x[1]);
        return {x[0], g * (1.0 - std::sqrt(x[0] / g)), x[1]-x[0]}; // zdt1 + constraint x0>x1
    }
    std::pair<vector_double, vector_double> get_bounds() const
    {
        return {{0.0, 0.0}, {1.0, 1.0}};
    }
    vector_double::size_type get_nobj() const
    {
        return 2;
    }
    
    vector_double::size_type get_nic() const
    {
        return 1;
    }
};

int main()
{
  try {
    problem prob{problem1{}};

    prob = unconstrain(prob);
    
    population pop1{prob, 0, 0};
    int size = 80;
    std::uniform_real_distribution<double> unif(0.0, 1.0);
    std::default_random_engine re;
    for (int i=0; i<size; ++i)
    {
      vector_double x(2);
      x[0] = unif(re);
      do {
        x[1] = unif(re);
      } while (false && x[0] <= x[1]);// ok if replace false by true
      
      vector_double y = prob.fitness(x);
      pop1.push_back(x);
    }

    maco user_algo1{10u};
    pop1 = user_algo1.evolve(pop1);

	}
	catch(const std::exception & exc) {
		std::cout << "ex="<<exc.what() <<std::endl;
		return 2;
	}
	return 0;
}

from pagmo2.

jschueller avatar jschueller commented on September 16, 2024

@Sceki were you able to reproduce using my code ?

from pagmo2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.