de.uka.ilkd.key.logic.op

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.logic.op 
de.uka.ilkd.key.logic.op
contains the operators of {@link de.uka.ilkd.key.logic.Term}s. Operators may be {@link de.uka.ilkd.key.logic.op.Quantifier}s or {@link de.uka.ilkd.key.logic.op.SubstOp}s that bind variables for subterms, but also {@link de.uka.ilkd.key.logic.op.Modality}s, or {@link de.uka.ilkd.key.logic.op.QuanUpdateOperator}s. Many of the operators are constantly defined in {@link de.uka.ilkd.key.logic.op.Op}s. An operator can be a {@link de.uka.ilkd.key.logic.op.TermSymbol}s, such as a {@link de.uka.ilkd.key.logic.op.Function} or a variable. There are several kind of variables: {@link de.uka.ilkd.key.logic.op.LogicVariable}s (variables that must be bound but do not occur in programs), {@link de.uka.ilkd.key.logic.op.ProgramVariable}s (allowed both in programs and in logic, but not boundable), {@link de.uka.ilkd.key.logic.op.Metavariable}s, and {@link de.uka.ilkd.key.logic.op.SchemaVariable}s for {@link de.uka.ilkd.key.rule.Taclet}s. Last modified: Mon Apr 18 09:42:36 MEST 2005
Java Source File NameTypeComment
AbstractMetaOperator.javaClass this class implements the interface for MetaOperators.
AbstractTermSV.javaClass
AccessOp.javaClass
AnonymousUpdate.javaClass
ArrayOp.javaClass
AttributeOp.javaClass
CastFunctionSymbol.javaClass This function symbol is created for casts to the depending sort.
ComputeSpecOp.javaClass This compute spec operator is used for computing spec.
ConstructorFunction.javaClass A Constructor is a Function which belongs to a generated sort.
Equality.javaClass This class represents an equality symbol for a given sort. The system will generate automatically for each sort exactly one equality symbol.
ExactInstanceSymbol.javaClass
ExpressionOperator.javaClass
FormulaSV.javaClass
Function.javaClass
IfExThenElse.javaClass This implements an ifEx (x1, x2, ...) (phi) (t1) (t2) operator. The meaning of this expression is given by (ifEx (x1, x2, ...) (phi) (t1) (t2)) equiv (ifEx (x1) (ex x2.
IfThenElse.javaClass
InstanceofSymbol.javaClass
IProgramVariable.javaInterface
IUpdateOperator.javaInterface
Junctor.javaClass
ListSV.javaClass
Location.javaInterface Operators implementing this interface may stand for locations as well.
LocationVariable.javaClass This class represents all kind of local and instance variables.
LogicVariable.javaClass
MetaOperator.javaInterface This is the interface for MetaOperators, which are used to do complex term transformation when applying a taclet.
Metavariable.javaClass
Modality.javaClass this class is used to represent a dynamic logic modality like diamond and box (but also extensions of DL like preserves and throughout are possible in the future).
ModalOperatorSV.javaClass
NameSV.javaClass
NonRigid.javaInterface
NonRigidFunction.javaClass Non-rigid function or predicate symbols are realised as instances of this class.
NonRigidFunctionLocation.javaClass
NonRigidHeapDependentFunction.javaClass Instances of this classes represent non-rigid functions, which dependent only on the state of the heap and not of any local variables.
NRFunctionWithExplicitDependencies.javaClass Non Rigid Fucntion with explicit dependencies.
Op.javaClass This class contains logical connectives, most of them derive from this class.
Operator.javaInterface All symbols acting as members of a term e.g.
OperatorSV.javaClass Creates an operator schemavariable that matches a given set of operators.
ParsableVariable.javaInterface
ProgramConstant.javaClass This class represents currently only static final fields initialised with a compile time constant.
ProgramMethod.javaClass The program method represents a concrete method in the logic. In case of an instance method the first argument represents the object on which the method is invoked.
ProgramSV.javaClass
ProgramVariable.javaClass
QuantifiableVariable.javaInterface
Quantifier.javaClass
QuanUpdateOperator.javaClass

Operator for simultaneous, guarded and quantified updates.

RigidFunction.javaClass
SchemaVariable.javaInterface
SchemaVariableAdapter.javaClass This class represents the root of a schema variable hierarchy to be express termstructures that match on logical terms.
SchemaVariableFactory.javaClass
ShadowArrayOp.javaClass
ShadowAttributeOp.javaClass
ShadowedOperator.javaInterface
SkolemTermSV.javaClass
SortDependingFunction.javaClass A sort depending function is a function symbol.
SortDependingSymbol.javaInterface Interface for a class (function, predicate) from which instances exist for every sort (e.g.
SortedSchemaVariable.javaClass This class represents the root of a schema variable hierarchy to be express termstructures that match on logical terms.
SubstOp.javaClass Standard first-order substitution operator, resolving clashes but not preventing (usually unsound) substitution of non-rigid terms across modal operators.
SVSubstitute.javaInterface JavaCardDL syntactical elements implement this interface if they can occur as instantiations of schema variabe.
TermSV.javaClass
TermSymbol.javaClass The abstract class term symbol implements common features of several symbols occuring as part of a term (formula).
VariableSV.javaClass
WarySubstOp.javaClass
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.