File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -55,8 +55,6 @@ function getine(p::Polyhedron)
55
55
else
56
56
p. ine = LiftedHRepresentation (getextm (p, :Fresh ))
57
57
p. inem = nothing
58
- p. hlinearitydetected = true
59
- p. noredundantinequality = true
60
58
end
61
59
end
62
60
return p. ine
@@ -74,8 +72,6 @@ function getext(p::Polyhedron)
74
72
else
75
73
p. ext = LiftedVRepresentation (getinem (p, :Fresh ))
76
74
p. extm = nothing
77
- p. vlinearitydetected = true
78
- p. noredundantgenerator = true
79
75
end
80
76
end
81
77
return p. ext
@@ -154,7 +150,7 @@ function Polyhedra.detecthlinearity!(p::Polyhedron)
154
150
p. inem = nothing
155
151
p. ine = nothing
156
152
getine (p)
157
- # getine sets hlinearity as detected and no redundant ineq.
153
+ p . hlinearitydetected = true
158
154
end
159
155
end
160
156
function Polyhedra. detectvlinearity! (p:: Polyhedron )
@@ -163,7 +159,7 @@ function Polyhedra.detectvlinearity!(p::Polyhedron)
163
159
p. extm = nothing
164
160
p. ext = nothing
165
161
getext (p)
166
- # getext sets vlinearity as detected and no redundant gen.
162
+ p . vlinearitydetected = true
167
163
end
168
164
end
169
165
function Polyhedra. removehredundancy! (p:: Polyhedron )
You can’t perform that action at this time.
0 commit comments