org.jgap

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Development » jgap » org.jgap 
org.jgap
Houses the interfaces and classes that make up the core of JGAP.
Java Source File NameTypeComment
AllBaseTests.javaClass Test suite for all tests of package org.jgap.
AllTests.javaClass
BaseChromosome.javaClass Base class for any implementation of interface IChromosome.
BaseGene.javaClass Abstract base class for all genes.
BaseGeneTest.javaClass Tests the BaseGene class.
BaseGeneticOperator.javaClass Base class for any implementation of interface GeneticOperator.
BaseRateCalculator.javaClass Base class for rate calculators.
BaseRateCalculatorTest.javaClass Tests the BaseRateCalculator class.
BreederBase.javaClass Abstract base class for breeders.
BulkFitnessFunction.javaClass Bulk fitness functions are used to determine how optimal a group of solutions are relative to each other.
CachedFitnessFunction.javaClass The cached fitness function extends the original FitnessFunction functionality in order to reduce evaluating something twice.
Chromosome.javaClass Chromosomes represent potential solutions and consist of a fixed-length collection of genes.
ChromosomeForTesting.javaClass Derived Chromosome class for testing purposes only.
ChromosomeTest.javaClass Tests the Chromosome class.
Configuration.javaClass The Configuration class represents the current configuration of plugins and parameters necessary to execute the genetic algorithm (such as fitness function, natural selector, genetic operators, and so on).

Note that, while during setup, the settings, flags, and other values may be set multiple times.

ConfigurationForTesting.javaClass Ready-to-go Implementation of org.jgap.Configuration with all important parameters already set.
ConfigurationTest.javaClass Tests the Configuration class.
DefaultFitnessEvaluator.javaClass A default implementation of a fitness evaluator.
DefaultFitnessEvaluatorTest.javaClass
DeltaFitnessEvaluator.javaClass An implementation of a fitness evaluator interpreting the fitness as delta value.
DeltaFitnessEvaluatorTest.javaClass Test cases for class DeltaFitnessEvaluator.
FitnessEvaluator.javaInterface Interface for a fitness evaluator used in a Genotype to determine how to interpret the fitness value.
FitnessFunction.javaClass Fitness functions are used to determine how optimal a particular solution is relative to other solutions.
FitnessFunctionTest.javaClass Tests the FitnessFunction class.
Gene.javaInterface Genes represent the discrete components of a potential solution (the Chromosome).
GeneticOperator.javaInterface A GeneticOperator represents an operation that takes place on a population of Chromosomes during the evolution process.
Genotype.javaClass Genotypes are fixed-length populations of chromosomes.
GenotypeTest.javaClass Tests the Genotype class.
IApplicationData.javaInterface The Chromosome class allows to attach a custom object that is ignored by the genetic operations.
IBreeder.javaInterface Interface for GA breeders.
IBusinessKey.javaInterface Interface for objects that offer a business key.
IChromosome.javaInterface Interface for chromosomes.
IChromosomePool.javaInterface Interface for chromosome pools (e.g., see class ChromosomePool).
ICloneHandler.javaInterface Interface for handlers capable of cloning specific classes.

A clone handler answers via isHandlerFor(Class) whether he could clone the given class.

The perform(Object, Object) method does the cloning acknowledged before with isHandlerFor(Class).

ICompareToHandler.javaInterface Interface for handlers capable of comparing instances of specific classes.
ICompositeGene.javaInterface Interface for Genes being composed by other genes.
IGeneConstraintChecker.javaInterface Interface for checking whether a given allele value is valid to be set for a given gene instance.
IGeneticOperatorConstraint.javaInterface Interface for a constraint checker that determines whether a genetic operation should be executed for a given list of chromosomes.
IHandler.javaInterface Interface for handlers capable of doing somethign specific.

Such a handler acknowledges via isHandlerFor(Class) that the method perform(Object, Object) could be executed for the given class.

IInitializer.javaInterface Interface for handlers capable of initializing specific classes.

Such an initializer answers via isHandlerFor(Class) whether he could init the given class.

The perform(Object, Object) method does the init acknowledged before with isHandlerFor(Class).

IJGAPFactory.javaInterface Interface for central factory, see JGAPFactory.
INaturalSelector.javaInterface Natural selectors are responsible for actually selecting a specified number of Chromosome specimens from a population, using the fitness values as a guide.
InvalidConfigurationException.javaClass This exception is typically thrown when an invalid value has been passed to a Configuration object, an attempt is made to lock a Configuration object before all required settings have been provided, or an attempt is made to alter a setting in a Configuration object after it has been successfully locked.
IPersistentRepresentation.javaInterface Interface for objects that can represent themselves as a string and parse this string later on to generate a new instance of themselves.
IUniversalRateCalculator.javaInterface Interface for a calculator that determines a dynamic rate.
JGAPTestCase.javaClass Abstract test case for all JGAP test cases providing a common infrastructure.
NaturalSelector.javaClass Abstract base implementation of interface INaturalSelector.
Population.javaClass List of chromosomes held in the Genotype (or possibly later in the Configuration object).
PopulationTest.javaClass Tests the Population class.
RandomGenerator.javaInterface The RandomGenerator interface provides an abstraction for the random number implementation so that more rigorous or alternative implementations can be provided as desired.

ATTENTION: nextDouble should only return values betwen 0 (inclusive) and 1 (exclusive!).

UnsupportedRepresentationException.javaClass This exception is typically thrown when the setValueFromPersistentRepresentation() method of a Gene class is unable to process the string representation it has been given, either because that representation is not supported by that Gene implementation or because the representation is corrupt.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.