Module: Moea

Defined in:
../lib/pareto.rb,
../lib/crowding.rb,
../lib/dominance.rb

Defined Under Namespace

Modules: Pareto, WeakPareto Classes: Crowding, Dominance

Instance Method Summary (collapse)

Instance Method Details

- (Object) maximize(symb)

Shorthand for Pareto.maximize( MyClassName, symb )



12
13
14
# File '../lib/pareto.rb', line 12

def maximize symb
  Pareto.maximize( self, symb )
end

- (Object) minimize(symb)

Shorthand for Pareto.minimize( MyClassName, symb )



18
19
20
# File '../lib/pareto.rb', line 18

def minimize symb 
  Pareto.minimize( self, symb )
end

- (Object) objective(symb, dir)

Shorthand for Pareto.objective( MyClassName, symb, dir )



6
7
8
# File '../lib/pareto.rb', line 6

def objective( symb, dir )
  Pareto.objective( self, symb, dir )
end