blob: 9df167f8fa21c92a7de239177449fddd50f549fd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
package rsacomb
sealed trait SkolemStrategy
object SkolemStrategy {
// TODO: might want to use something else other than `hashCode` as a
// function to generate a fresh function/constant
/* No skolemization at all.
*
* From
* ∃R.A ⊑ B
* to
* R(x,y), B(y) -> B(x)
*/
case object None extends SkolemStrategy
/* Functional skolemization
*
* From
* A ⊑ ∃R.B
* to
* A(y) -> R(x,f(x)), B(f(x))
* for f, fresh function associated with the input axiom
*/
case class Standard(func : String) extends SkolemStrategy
object Standard {
def apply(axiom : String) = new Standard(genFunctionString(axiom))
def genFunctionString(str : String) = "f_" ++ str.hashCode.toString
}
/* Functional skolemization
*
* From
* A ⊑ ∃R.B
* to
* A(y) -> R(x,c), B(c)
* for c, fresh constant associated with the input axiom
*/
case class Constant(const : String) extends SkolemStrategy
object Constant {
def apply(axiom : String) = new Constant(genConstantString(axiom))
def genConstantString(str : String) = "internal:c_" ++ str.hashCode.toString
}
}
|