Source Code Cross Referenced for WithoutSupergeneSample.java in  » Development » jgap » examples » supergene » Java Source Code / Java DocumentationJava Source Code and Java Documentation

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 » examples.supergene 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         * This file is part of JGAP.
03:         *
04:         * JGAP offers a dual license model containing the LGPL as well as the MPL.
05:         *
06:         * For licensing information please see the file license.txt included with JGAP
07:         * or have a look at the top of class org.jgap.Chromosome which representatively
08:         * includes the JGAP license policy applicable for any file delivered with JGAP.
09:         */
10:        package examples.supergene;
11:
12:        import org.jgap.*;
13:        import org.jgap.impl.*;
14:
15:        /**
16:         * Computes the optimal change with the same condition as
17:         * SupergeneTest, but without using supergenes. Implemented
18:         * to compare the performance.
19:         * To test the Supergene, we created the "makechange" version with
20:         * additional condition: the number of nickels and pennies must be
21:         * both even or both odd. The supergene encloses two genes
22:         * (nickels and pennies) and is valid if the condition above is
23:         * satisfied.
24:         *
25:         * @author Audrius Meskauskas
26:         * @author Klaus Meffert
27:         */
28:        class WithoutSupergeneSample extends SupergeneSample {
29:            /** String containing the CVS revision. Read out via reflection!*/
30:            private final static String CVS_REVISION = "0.0.0 alpha explosive";
31:
32:            /**
33:             * Executes the genetic algorithm to determine the minimum number of
34:             * coins necessary to make up the given target amount of change. The
35:             * solution will then be written to System.out.
36:             *
37:             * @param a_targetChangeAmount The target amount of change for which this
38:             * method is attempting to produce the minimum number of coins
39:             * @return absolute difference between the required and computed change
40:             * @throws Exception
41:             */
42:            public int makeChangeForAmount(int a_targetChangeAmount)
43:                    throws Exception {
44:                // Start with a DefaultConfiguration, which comes setup with the
45:                // most common settings.
46:                // -------------------------------------------------------------
47:                Configuration conf = new DefaultConfiguration();
48:                // Set the fitness function we want to use. We construct it with
49:                // the target amount of change passed in to this method.
50:                // ---------------------------------------------------------
51:                WithoutSupergeneChangeFitFForTesting fitnessFunction = new WithoutSupergeneChangeFitFForTesting(
52:                        a_targetChangeAmount);
53:                conf.setFitnessFunction(fitnessFunction);
54:                // Now we need to tell the Configuration object how we want our
55:                // Chromosomes to be setup. We do that by actually creating a
56:                // sample Chromosome and then setting it on the Configuration
57:                // object. As mentioned earlier, we want our Chromosomes to each
58:                // have four genes, one for each of the coin types. We want the
59:                // values (alleles) of those genes to be integers, which represent
60:                // how many coins of that type we have. We therefore use the
61:                // IntegerGene class to represent each of the genes. That class
62:                // also lets us specify a lower and upper bound, which we set
63:                // to sensible values for each coin type.
64:                // --------------------------------------------------------------
65:                Gene[] sampleGenes = new Gene[4];
66:                sampleGenes[DIMES] = getDimesGene(conf); // Dimes
67:                sampleGenes[NICKELS] = getNickelsGene(conf); // Nickels
68:                sampleGenes[QUARTERS] = getQuartersGene(conf); // Quarters
69:                sampleGenes[PENNIES] = getPenniesGene(conf); // Pennies
70:                int s = solve(conf, a_targetChangeAmount, fitnessFunction,
71:                        sampleGenes);
72:                return s;
73:            }
74:
75:            public static void main(String[] args) {
76:                WithoutSupergeneSample test = new WithoutSupergeneSample();
77:                test.test();
78:                System.exit(0);
79:            }
80:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.