We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af5b24b commit df66d2cCopy full SHA for df66d2c
src/Property/WalkProperty.php
@@ -152,7 +152,7 @@ public function isSimple()
152
*/
153
public function isHamiltonian()
154
{
155
- return $this->isArrayContentsEqual($this->walk->getVerticesSequence(), $this->getGraph()->getVertices());
+ return $this->isArrayContentsEqual($this->walk->getVerticesSequence(), $this->walk->getGraph()->getVertices());
156
}
157
158
/**
@@ -165,7 +165,7 @@ public function isHamiltonian()
165
166
public function isEulerian()
167
168
- return $this->isArrayContentsEqual($this->walk->getEdgesSequence(), $this->getGraph()->getEdges());
+ return $this->isArrayContentsEqual($this->walk->getEdgesSequence(), $this->walk->getGraph()->getEdges());
169
170
171
0 commit comments