Skip to content

Commit 2914f7b

Browse files
committed
Remove "Following constraints are incompatible:" when no constraint
1 parent fb4a4f6 commit 2914f7b

File tree

2 files changed

+30
-17
lines changed

2 files changed

+30
-17
lines changed

src/ast/analysis/ErrorAnalyzer.h

+20-13
Original file line numberDiff line numberDiff line change
@@ -95,26 +95,33 @@ class ErrorAnalyzer {
9595
void explain(ErrorReport& report, const Argument* var, std::string message) {
9696
if (argumentIsExplained(var)) return;
9797
std::vector<DiagnosticMessage> additionalMessages;
98+
bool doMarkAsExplained = true;
9899
if (auto it = unsatCores.find(var); it != unsatCores.end()) {
99-
additionalMessages.emplace_back("Following constraints are incompatible:");
100-
for (const auto& constraint : it->second) {
101-
std::stringstream ss;
102-
if (auto customMessage = constraint->customMessage(); customMessage) {
103-
ss << " " << *customMessage;
104-
} else {
105-
ss << " " << *constraint;
106-
}
107-
if (auto it = constraintLocations.find(constraint); it != constraintLocations.end()) {
108-
additionalMessages.emplace_back(ss.str(), it->second);
109-
} else {
110-
additionalMessages.emplace_back(ss.str());
100+
if (!it->second.empty()) {
101+
additionalMessages.emplace_back("Following constraints are incompatible:");
102+
for (const auto& constraint : it->second) {
103+
std::stringstream ss;
104+
if (auto customMessage = constraint->customMessage(); customMessage) {
105+
ss << " " << *customMessage;
106+
} else {
107+
ss << " " << *constraint;
108+
}
109+
if (auto it = constraintLocations.find(constraint); it != constraintLocations.end()) {
110+
additionalMessages.emplace_back(ss.str(), it->second);
111+
} else {
112+
additionalMessages.emplace_back(ss.str());
113+
}
111114
}
115+
} else {
116+
doMarkAsExplained = false;
112117
}
113118
}
114119
Diagnostic diag{Diagnostic::Type::ERROR, DiagnosticMessage{message, var->getSrcLoc()},
115120
std::move(additionalMessages)};
116121
report.addDiagnostic(diag);
117-
markArgumentAsExplained(var);
122+
if (doMarkAsExplained) {
123+
markArgumentAsExplained(var);
124+
}
118125
}
119126

120127
private:

tests/semantic/agg_checks/agg_checks.err

+10-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ r("X",Y) :- Y = min X : { X != Y }.
1010
Error: Unable to deduce type for variable Y in file agg_checks.dl at line 11
1111
r("X",Y) :- Y = min X : { X != Y, !a(X,Y) }.
1212
------^--------------------------------------
13-
Following constraints are incompatible:
13+
Error: Unable to deduce type for variable Y in file agg_checks.dl at line 11
14+
r("X",Y) :- Y = min X : { X != Y, !a(X,Y) }.
15+
------------^--------------------------------
1416
Error: Couldn't assign types to the aggregator in file agg_checks.dl at line 11
1517
r("X",Y) :- Y = min X : { X != Y, !a(X,Y) }.
1618
----------------^----------------------------
@@ -26,10 +28,12 @@ r("X",Y) :- Y = min X : { X != Y, !a(X,Y) }.
2628
Error: Unable to deduce type for variable Y0 in file agg_checks.dl at line 11
2729
r("X",Y) :- Y = min X : { X != Y, !a(X,Y) }.
2830
-------------------------------^-------------
29-
Following constraints are incompatible:
3031
Error: Ungrounded variable Y0 in file agg_checks.dl at line 11
3132
r("X",Y) :- Y = min X : { X != Y, !a(X,Y) }.
3233
-------------------------------^-------------
34+
Error: Unable to deduce type for variable Y0 in file agg_checks.dl at line 11
35+
r("X",Y) :- Y = min X : { X != Y, !a(X,Y) }.
36+
---------------------------------------^-----
3337
Error: Ungrounded variable X in file agg_checks.dl at line 14
3438
r("X",Y) :- Y = min X : { a("A",2) }.
3539
--------------------^-----------------
@@ -42,7 +46,9 @@ r("X",Y) :- Y = min X : { a("A",Y), Y>X }.
4246
Error: Unable to deduce type for variable Y in file agg_checks.dl at line 20
4347
r("X",Y) :- Y = min X : a(X,_).
4448
------^-------------------------
45-
Following constraints are incompatible:
49+
Error: Unable to deduce type for variable Y in file agg_checks.dl at line 20
50+
r("X",Y) :- Y = min X : a(X,_).
51+
------------^-------------------
4652
Error: Couldn't assign types to the aggregator in file agg_checks.dl at line 20
4753
r("X",Y) :- Y = min X : a(X,_).
4854
----------------^---------------
@@ -67,4 +73,4 @@ Relation r in file agg_checks.dl at line 6
6773
has cyclic aggregation in file agg_checks.dl at line 28
6874
r("X",Y) :- Y = min Y : r("X",Y).
6975
------------------------^---------
70-
16 errors generated, evaluation aborted
76+
19 errors generated, evaluation aborted

0 commit comments

Comments
 (0)