Module: DRP

Defined in:
lib/pso.rb,
lib/info.rb,
lib/error.rb,
lib/utils.rb,
lib/defaults.rb,
lib/rule_engine.rb,
lib/instance_methods.rb,
lib/weights_and_max_depths.rb

Overview

DRP, Genetic Programming + Grammatical Evolution = Directed Ruby Programming Copyright © 2006, Christophe McKeon

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Softwar Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

Defined Under Namespace

Modules: InstanceMethods, MaxDepths, RuleEngine, SearchAlgorithms, Utils, Weights Classes: DRPError, DRPNameClashError, RuleMethod

Constant Summary collapse

VERSION_MAJOR =
0
VERSION_MINOR =
0
VERSION_TWEAK =
6
Version =
"#{VERSION_MAJOR}.#{VERSION_MINOR}.#{VERSION_TWEAK}"
'Copyright (c) 2006 by Chritophe McKeon <[email protected]>'
DEFAULT =
{
  :max_depth                        => 10,
  :weight                           => 1.0,
  :test_for_extend_name_clashes     => true
}