File: DataReasoning.cpp

package info (click to toggle)
fact%2B%2B 1.6.5~dfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 4,496 kB
  • sloc: cpp: 28,000; java: 22,674; xml: 3,268; makefile: 102; ansic: 61; sh: 3
file content (172 lines) | stat: -rw-r--r-- 5,165 bytes parent folder | download | duplicates (3)
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/* This file is part of the FaCT++ DL reasoner
Copyright (C) 2005-2015 Dmitry Tsarkov and The University of Manchester
Copyright (C) 2015-2016 Dmitry Tsarkov

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
*/

#include "DataReasoning.h"

//toms code start
bool DataTypeReasoner :: addDataEntry ( BipolarPointer p, const DepSet& dep )
{
	switch ( DLHeap[p].Type() )
	{
	case dtDataType:		// get appropriate type
	{
		DataTypeAppearance* type = getDTAbyType(getDataEntry(p));

		if ( LLM.isWritable(llCDAction) )	// level of logging
			LL << ' ' << (isPositive(p) ? '+' : '-') << getDataEntry(p)->getName();

		return setTypePresence ( type, isPositive(p), dep );
	}
	case dtDataValue:
		return processDataValue ( isPositive(p), getDataEntry(p), dep );
	case dtDataExpr:
		return processDataExpr ( isPositive(p), getDataEntry(p), dep );
	case dtAnd:		// processed by general reasoning
		return false;
	default:
		fpp_unreachable();
		return true;
	}
}

// ---------- Processing different alternatives

bool
DataTypeAppearance::DepInterval :: checkMinMaxClash ( DepSet& dep ) const
{
	// we are interested in a NEG intervals iff a PType is set
	if ( !Constraints.closed() )
		return false;

	const ComparableDT& Min = Constraints.min;
	const ComparableDT& Max = Constraints.max;

	// normal interval
	if ( Min < Max )
		return false;

	// >?x and <?y leads to clash for y < x
	// >5 and <5, >=5 and <5, >5 and <=5 leads to clash
	if ( Max < Min || Constraints.minExcl || Constraints.maxExcl )
	{
		dep += locDep;
		return true;
	}

	return false;
}

bool
DataTypeAppearance :: addPosInterval ( const TDataInterval& Int, const DepSet& dep )
{
	DTConstraint aux;
	if ( Int.hasMin() )
	{
		Constraints.swap(aux);
		setLocal ( /*min=*/true, /*excl=*/Int.minExcl, Int.min, dep );
		if ( addIntervals ( aux.begin(), aux.end() ) )
			return true;
		aux.clear();
	}
	if ( Int.hasMax() )
	{
		Constraints.swap(aux);
		setLocal ( /*min=*/false, /*excl=*/Int.maxExcl, Int.max, dep );
		if ( addIntervals ( aux.begin(), aux.end() ) )
			return true;
		aux.clear();
	}
	if ( Constraints.empty() )
		return reportClash ( accDep, "C-MM" );
	return false;
}

bool
DataTypeAppearance :: addNegInterval ( const TDataInterval& Int, const DepSet& dep )
{
	// negative interval -- make a copies
	DTConstraint aux;
	Constraints.swap(aux);

	if ( Int.hasMin() )
	{
		setLocal ( /*min=*/false, /*excl=*/!Int.minExcl, Int.min, dep );
		if ( addIntervals ( aux.begin(), aux.end() ) )
			return true;
	}
	if ( Int.hasMax() )
	{
		setLocal ( /*min=*/ true, /*excl=*/!Int.maxExcl, Int.max, dep );
		if ( addIntervals ( aux.begin(), aux.end() ) )
			return true;
	}
	aux.clear();
	if ( Constraints.empty() )
		return reportClash ( accDep, "C-MM" );
	return false;
}

// comparison methods

/// @return true iff there is at least one point that two DTA share
bool
DataTypeAppearance :: operator == ( const DataTypeAppearance& other ) const
{
	if ( Constraints.size() != 1 && other.Constraints.size() != 1 )
		return false;	// FORNOW: just a single interval
	const TDataInterval& i0 = Constraints[0].getDataInterval();
	const TDataInterval& i1 = other.Constraints[0].getDataInterval();
	if ( !i0.closed() || !i1.closed() )	// FORNOW: only closed ones
		return false;
	const ComparableDT& min0 = i0.min;
	const ComparableDT& min1 = i1.min;
	const ComparableDT& max0 = i0.max;
	const ComparableDT& max1 = i1.max;
	if ( max0 < min1 || max1 < min0 )	// no intersection
		return false;
	// here there is an intersection: minx-miny-maxz-maxt
	if ( min0 == max1 && (i0.minExcl || i1.maxExcl) )	// no touch with a border
		return false;
	if ( min1 == max0 && (i1.minExcl || i0.maxExcl) )	// no touch with a border
		return false;
	return true;
}

/// @return true iff there is at least one point in OTHER that there is not in THIS
bool
DataTypeAppearance :: operator < ( const DataTypeAppearance& other ) const
{
	if ( Constraints.size() != 1 && other.Constraints.size() != 1 )
		return false;	// FORNOW: just a single interval
	const TDataInterval& i0 = Constraints[0].getDataInterval();
	const TDataInterval& i1 = other.Constraints[0].getDataInterval();
	if ( !i1.hasMax() )	// always can find larger one
		return true;
	// here i1.max exists
	if ( !i0.hasMin() )	// always can find a smaller one
		return true;
	// here i0.min exists
	if ( i0.min < i1.max )	// {5,} and {,7}
		return true;
	if ( i0.min == i1.max && i0.minExcl && !i1.maxExcl )
		return true;	// (5,} and {,5]
	// note that (6,} and {,5] are not in the < relation
	return false;
}