HOG2
abstractionalgorithms
SimpleHierarchicalAStar.cpp
Go to the documentation of this file.
1
// * SimpleHierarchicalAStar.cpp
3
// * hog2
4
// *
5
// * Created by Nathan Sturtevant on 10/9/07.
6
// * Copyright 2007 Nathan Sturtevant, University of Alberta. All rights reserved.
7
// *
8
// */
9
//
10
//#include "SimpleHierarchicalAStar.h"
11
//
12
//SimpleHierarchicalAStar::SimpleHierarchicalAStar()
13
//{
14
//}
15
//
16
//~SimpleHierarchicalAStar::SimpleHierarchicalAStar()
17
//{
18
//}
19
//
20
//path *SimpleHierarchicalAStar::GetPath(GraphAbstraction *aMap, node *from, node *to, reservationProvider *rp = 0)
21
//{
22
//}
23
//
24
//path *SimpleHierarchicalAStar::DoOneSearchStep()
25
//{
26
//}
27
//
28
//bool SimpleHierarchicalAStar::InitializeSearch(GraphAbstraction *aMap, node *from, node *to)
29
//{
30
//}
31
//
32
//void SimpleHierarchicalAStar::OpenGLDraw() const
33
//{
34
//}
35
//
36
//
37
//
38
//HierarchicalHeuristicEnvironment::~HierarchicalHeuristicEnvironment() {}
39
//void HierarchicalHeuristicEnvironment::GetSuccessors(const unsigned long &nodeID, std::vector<unsigned long> &neighbors) const
40
//{
41
//}
42
//
43
//void HierarchicalHeuristicEnvironment::GetActions(const unsigned long &nodeID, std::vector<unsigned long> &actions) const
44
//{
45
//}
46
//
47
//unsigned long HierarchicalHeuristicEnvironment::GetAction(unsigned long &s1, unsigned long &s2) const
48
//{
49
//}
50
//
51
//void HierarchicalHeuristicEnvironment::ApplyAction(unsigned long &s, unsigned long a) const
52
//{
53
//}
54
//
55
//
56
//void HierarchicalHeuristicEnvironment::GetNextState(unsigned long ¤ts, unsigned long dir, unsigned long &news) const
57
//{
58
//}
59
//
60
//bool HierarchicalHeuristicEnvironment::InvertAction(unsigned long &a) const
61
//{
62
//}
63
//
64
//
65
//double HierarchicalHeuristicEnvironment::HCost(const unsigned long &node1, const unsigned long &node2)
66
//{
67
//}
68
//
69
//double HierarchicalHeuristicEnvironment::GCost(const unsigned long &node1, const unsigned long &node2)
70
//{
71
//}
72
//
73
//bool HierarchicalHeuristicEnvironment::GoalTest(unsigned long &node, unsigned long &goal)
74
//{
75
//}
76
//
77
//
78
//uint64_t HierarchicalHeuristicEnvironment::GetStateHash(const unsigned long &node) const
79
//{
80
//}
81
//
82
//uint64_t HierarchicalHeuristicEnvironment::GetActionHash(unsigned long act) const
83
//{
84
//}
85
//
86
//
87
//HierarchicalHeuristicEnvironment::OccupancyInterface<unsigned long,unsigned long> *GetOccupancyInfo()
88
//{
89
//}
90
//
91
//
103
//
Generated by
1.8.17