Source Code Cross Referenced for CounterExample.java in  » Testing » KeY » de » uka » ilkd » key » counterexample » 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 » Testing » KeY » de.uka.ilkd.key.counterexample 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        // This file is part of KeY - Integrated Deductive Software Design
002:        // Copyright (C) 2001-2007 Universitaet Karlsruhe, Germany
003:        //                         Universitaet Koblenz-Landau, Germany
004:        //                         Chalmers University of Technology, Sweden
005:        //
006:        // The KeY system is protected by the GNU General Public License. 
007:        // See LICENSE.TXT for details.
008:        //
009:        //
010:        //
011:
012:        package de.uka.ilkd.key.counterexample;
013:
014:        import de.uka.ilkd.key.logic.CExProblem;
015:
016:        /**
017:         * You can use this class to prove that a certain conjecture is wrong for an
018:         * abstract data type. On initialization of CounterExample you can enter the
019:         * problem which you want to test. Then you can generate the calculus and run
020:         * the ModelGeneration Software Mgtp to get the CounterExample data.
021:         * 
022:         * @author Sonja Pieper
023:         * @see de.uka.ilkd.key.logic.CExProblem
024:         * @version 1
025:         * @since 10.08.2001 
026:         */
027:
028:        public class CounterExample {
029:
030:            private CExProblem problem;
031:            private Calculus calculus;
032:            private MgtpWrapper mgtp;
033:            private ModelRepresentation model;
034:
035:            static Configuration config = new Configuration("max");
036:
037:            public CounterExample(CExProblem cexproblem) {
038:                problem = cexproblem;
039:                calculus = new ConjCalculus(problem);
040:                mgtp = new MgtpWrapper(calculus);
041:                model = new ModelRepresentation(mgtp.getProve());
042:            }
043:
044:            public CExProblem getProblem() {
045:                return problem;
046:            }
047:
048:            public String getProblemString() {
049:                return problem.toString();
050:            }
051:
052:            public Calculus getCalculus() {
053:                return calculus;
054:            }
055:
056:            public String getCalculusString() {
057:                return calculus.toString();
058:            }
059:
060:            public ModelRepresentation getModel() {
061:                return model;
062:            }
063:
064:            public String getModelString() {
065:                return model.toString();
066:            }
067:
068:            public String toString() {
069:                String ausgabe = "\n\nCounter interpretation for the conjecture:\n"
070:                        + (this .problem.getConjecture()).toString()
071:                        + "\n\n\n"
072:                        + "Resulting term evaluation:\n\n"
073:                        + model.getTermeval()
074:                        + "\n"
075:                        + "The above interpretation satisfies the axioms,\n"
076:                        + "if instantiated by constructor terms with less then "
077:                        + (config.domainmax + 1)
078:                        + " constructors.\n"
079:                        + "\nSummary:\n"
080:                        + "\nThe conjecture "
081:                        + (this .problem.getConjecture()).toString()
082:                        + "\n\nis violated by the following variable assignment:\n"
083:                        + model.getVars()
084:                        + "\nand by the following evaluation of conjecture subterms:\n\n"
085:                        + model.getSubterms();
086:                return ausgabe;
087:            }
088:
089:            /**
090:             * This method allows to let the counter example generation proces
091:             * start for a second time, with a newly generated calculus etc.
092:             * might be useful after changing the configuration.
093:             */
094:            public void runAgain() {
095:                calculus = new ConjCalculus(problem);
096:                mgtp = new MgtpWrapper(calculus);
097:                model = new ModelRepresentation(mgtp.getProve());
098:            }
099:
100:            public static void changeConfiguration() {
101:                config.changeConfiguration();
102:            }
103:
104:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.