Skip to content

Commit a655c27

Browse files
committed
Readme typo
1 parent 446577c commit a655c27

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# MATLAB tool for multi-objective optimization (genetic or brute-force)
1+
# MATLAB tool for multi-objective optimization
22

33
This **MATLAB** tool offers different functionalities for multi-objective optimization:
44
* Offer a **common interface** for different solvers
55
* **Brute force** grid search (exhaustive search)
6-
* MATLAB **single-objective genetic** algoritm ('ga')
7-
* MATLAB **multi-objective genetic** algoritm ('gamultiobj')
6+
* MATLAB **single-objective genetic** algorithm ('ga')
7+
* MATLAB **multi-objective genetic** algorithm itm ('gamultiobj')
88
* Offer an **abstraction layer** to the MATLAB solver
99
* Scaling the input variables
1010
* Generating and filtering initial points
11-
* Transforming high-level datastructures ('struct') to low-level ('matrix')
11+
* Transforming high-level data structures ('struct') to low-level ('matrix')
1212
* Generating the low-level inputs required by the solvers
1313
* Allow **vectorized and parallel** evaluation of the functions
1414
* Divide the number of points to be evaluated into chunks

get_data.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
%
1616
% Use the followig strategies:
1717
% - brute force grid search (mixed integer)
18-
% - single-objective genetic algoritm (mixed integer)
19-
% - multi-objective genetic algoritm (continuous variables)
18+
% - single-objective genetic algorithm (mixed integer)
19+
% - multi-objective genetic algorithm (continuous variables)
2020
%
2121
% The problem solved in this example is trivial and not very interesting.
2222
%

src/optim/get_solution.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
% solver_param.solver_param - struct with the solver data (struct)
55
% solver_name - name of the solver (string)
66
% 'bruteforce' - test all the initial points, nothing more
7-
% 'ga' - MATLAB genetic algoritm 'ga'
8-
% 'gamultiobj' - MATLAB genetic algoritm 'gamultiobj'
7+
% 'ga' - MATLAB genetic algorithm 'ga'
8+
% 'gamultiobj' - MATLAB genetic algorithm 'gamultiobj'
99
% solver_param.n_split - maximum number of solution evaluated in one vectorized call (integer)
1010
% solver_param.options - options for the solver (GaOptions or GamultiobjOptions or struct)
1111
% fct_obj - compute the objective value from the input (function handle)

0 commit comments

Comments
 (0)