Home
last modified time | relevance | path

Searched refs:isGoal (Results 1 – 18 of 18) sorted by relevance

/dports/games/openra/OpenRA-release-20200503/OpenRA.Mods.Common/Pathfinder/
H A DBasePathSearch.cs77 protected Func<CPos, bool> isGoal; field in OpenRA.Mods.Common.Pathfinder.BasePathSearch
176 return isGoal(location); in IsTarget()
H A DPathSearch.cs53 search.isGoal = goalCondition; in Search()
78 search.isGoal = loc => in FromPoints()
/dports/science/cdk/cdk-cdk-2.3/legacy/src/main/java/org/openscience/cdk/smsd/algorithm/vflib/interfaces/
H A DIState.java106 public boolean isGoal(); in isGoal() method
/dports/science/cdk/cdk-cdk-2.3/legacy/src/main/java/org/openscience/cdk/smsd/algorithm/vflib/map/
H A DVFMCSMapper.java229 if (state.isGoal()) { in mapAll()
255 if (state.isGoal()) { in mapFirst()
H A DVFMapper.java233 if (state.isGoal()) { in mapAll()
257 if (state.isGoal()) { in mapFirst()
H A DVFState.java121 if (queryPath.isEmpty() || isGoal()) { in backTrack()
154 public boolean isGoal() { in isGoal() method in VFState
/dports/misc/ompl/ompl-1.5.2/src/ompl/geometric/planners/informedtrees/src/
H A DAITstar.cpp282 else if (graph_.isGoal(vertex)) in getPlannerData()
547 … return !graph_.isGoal(vertex) && !vertex->hasReverseParent(); in getVerticesInReverseSearchTree()
726 assert(child->hasReverseParent() || graph_.isGoal(child)); in performForwardSearchIteration()
727 assert(parent->hasReverseParent() || graph_.isGoal(parent)); in performForwardSearchIteration()
1000 if (!graph_.isGoal(vertex)) in reverseSearchUpdateVertex()
1463 if (graph_.isGoal(vertex) || vertex->hasReverseParent()) in countNumVerticesInReverseTree()
/dports/games/cdogs-sdl/cdogs-sdl-1.0.1/src/cdogs/
H A DAStar.c57 unsigned isGoal:1; member
176 NodeGetRecord(n)->isGoal = 1; in SetNodeIsGoal()
182 return !NodeIsNull(n) && NodeGetRecord(n)->isGoal; in NodeIsGoal()
/dports/misc/ompl/ompl-1.5.2/src/ompl/geometric/planners/informedtrees/aitstar/
H A DImplicitGraph.h124 bool isGoal(const std::shared_ptr<Vertex> &vertex) const;
/dports/misc/ompl/ompl-1.5.2/src/ompl/geometric/planners/informedtrees/aitstar/src/
H A DImplicitGraph.cpp428 bool ImplicitGraph::isGoal(const std::shared_ptr<Vertex> &vertex) const in isGoal() function in ompl::geometric::aitstar::ImplicitGraph
480 if (isGoal(vertex)) in prune()
/dports/games/wop/wop-0.4.3/src/
H A Dball.cpp65 if( ! insideGoal && getAttachedObject( a )->isGoal() && in update()
H A Dobject.hpp155 bool isGoal( void ) const { return getID() >= SMALLEST_GOAL && in isGoal() function in Object
H A Dscorekeeper.cpp157 if( ! ball->getAttachedObject( a )->isGoal() ) ball->detachFrom( a ); in replaceBall()
/dports/science/cdk/cdk-cdk-2.3/legacy/src/test/java/org/openscience/cdk/smsd/algorithm/vflib/
H A DVFLibTest.java187 Assert.assertFalse(state5.isGoal()); in testItShouldReachGoalWhenAllAtomsAreMapped()
192 Assert.assertTrue(state6.isGoal()); in testItShouldReachGoalWhenAllAtomsAreMapped()
/dports/misc/ompl/ompl-1.5.2/src/ompl/geometric/planners/quotientspace/datastructures/
H A DQuotientSpaceGraph.h99 bool isGoal{false};
/dports/math/teyjus/teyjus-2.1-7-ge63f40a/source/compiler/
H A Dregisters.ml86 let isGoal : bool ref = ref false var
87 let setIsGoal data = isGoal := data
88 let getIsGoal () = !isGoal
/dports/misc/ompl/ompl-1.5.2/src/ompl/geometric/planners/xxl/src/
H A DXXL.cpp1470 bool isGoal = false; in getPlannerData() local
1478 isGoal = true; in getPlannerData()
1480 if (!isStart && !isGoal) in getPlannerData()
1484 else if (isGoal) in getPlannerData()
/dports/misc/ompl/ompl-1.5.2/src/ompl/geometric/planners/quotientspace/datastructures/src/
H A DQuotientSpaceGraph.cpp195 qGoal_->isGoal = true; in init()