Minor cosmetics.
[PaGMO.git] / Functions / objfuns / trajobjfuns.h
blob881589c4b6ab2b93c26709826b59911fc2bccfdb
1 /*
2 * GOProblems.h
3 * SeGMO, a Sequential Global Multiobjective Optimiser
5 * Created by Dario Izzo on 5/17/08.
6 * Copyright 2008 ¿dvanced Concepts Team (European Space Agency). All rights reserved.
8 */
10 #ifndef TRAJOBJFUNS_H
11 #define TRAJOBJFUNS_H
13 #include<vector>
15 //NOTE: the functions here have passing by reference + const as they are called a lot of time during execution and thus
16 //it is worth trying to save time by avoiding to make a copy of the variable passed
18 double gtoc1 (const std::vector<double>& x);
19 double cassini1 (const std::vector<double>& x);
21 #endif