aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/logic/src/main/java/tools/refinery/logic/term/truthvalue/TruthValue.java
blob: 59bdeab39aceb90fec31534d46e04db6fbd85a48 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
 * SPDX-FileCopyrightText: 2021-2024 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package tools.refinery.logic.term.truthvalue;

import org.jetbrains.annotations.Nullable;
import tools.refinery.logic.AbstractValue;

public enum TruthValue implements AbstractValue<TruthValue, Boolean> {
	TRUE("true"),

	FALSE("false"),

	UNKNOWN("unknown"),

	ERROR("error");

	private final String name;

	TruthValue(String name) {
		this.name = name;
	}

	public String getName() {
		return name;
	}

	public static TruthValue toTruthValue(boolean value) {
		return value ? TRUE : FALSE;
	}

	@Override
	@Nullable
	public Boolean getArbitrary() {
		return switch (this) {
			case TRUE -> true;
			case FALSE, UNKNOWN -> false;
			case ERROR -> null;
		};
	}

	@Override
	public boolean isError() {
		return this == ERROR;
	}

	public boolean isConsistent() {
		return !isError();
	}


	public boolean isComplete() {
		return this != UNKNOWN;
	}

	@Override
	@Nullable
	public Boolean getConcrete() {
		return switch (this) {
			case TRUE -> true;
			case FALSE -> false;
			default -> null;
		};
	}

	@Override
	public boolean isConcrete() {
		return this == TRUE || this == FALSE;
	}

	public boolean must() {
		return this == TRUE || this == ERROR;
	}

	public boolean may() {
		return this == TRUE || this == UNKNOWN;
	}

	public TruthValue not() {
		return switch (this) {
			case TRUE -> FALSE;
			case FALSE -> TRUE;
			default -> this;
		};
	}

	@Override
	public TruthValue join(TruthValue other) {
		return switch (this) {
			case TRUE -> other == ERROR || other == TRUE ? TRUE : UNKNOWN;
			case FALSE -> other == ERROR || other == FALSE ? FALSE : UNKNOWN;
			case UNKNOWN -> UNKNOWN;
			case ERROR -> other;
		};
	}

	@Override
	public TruthValue meet(TruthValue other) {
		return switch (this) {
			case TRUE -> other == UNKNOWN || other == TRUE ? TRUE : ERROR;
			case FALSE -> other == UNKNOWN || other == FALSE ? FALSE : ERROR;
			case UNKNOWN -> other;
			case ERROR -> ERROR;
		};
	}
}