summaryrefslogtreecommitdiff
path: root/digital/avr/modules/path/astar/avrconfig.h
diff options
context:
space:
mode:
authorNicolas Schodet2010-04-23 00:34:18 +0200
committerNicolas Schodet2010-04-23 00:34:18 +0200
commitc199bfa0012d763f1e4684c3cd0ab6c07134ddce (patch)
treebc517cf3303a1ac63ac335e4781b69dd1016ac28 /digital/avr/modules/path/astar/avrconfig.h
parent98a10d5c181d40f8ea3d600d712ed249417a963e (diff)
digital/avr/modules/path/astar: new A* module
Diffstat (limited to 'digital/avr/modules/path/astar/avrconfig.h')
-rw-r--r--digital/avr/modules/path/astar/avrconfig.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/digital/avr/modules/path/astar/avrconfig.h b/digital/avr/modules/path/astar/avrconfig.h
new file mode 100644
index 00000000..9084a96f
--- /dev/null
+++ b/digital/avr/modules/path/astar/avrconfig.h
@@ -0,0 +1,34 @@
+#ifndef avrconfig_h
+#define avrconfig_h
+/* avrconfig.h - Configuration template. */
+/* avr.path.astar - A* path finding module. {{{
+ *
+ * Copyright (C) 2010 Nicolas Schodet
+ *
+ * APBTeam:
+ * Web: http://apbteam.org/
+ * Email: team AT apbteam DOT org
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * }}} */
+
+/* astar - A* path finding module. */
+/** Neighbor callback. */
+#define AC_ASTAR_NEIGHBOR_CALLBACK astar_neighbor_callback
+/** Heuristic callback. */
+#define AC_ASTAR_HEURISTIC_CALLBACK astar_heuristic_callback
+
+#endif /* avrconfig_h */