htn_planner 0.1.0

HTN parser and planner
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
type Restaurant:
    r1
    r2

type Berries:
    b1
    b2

task FindFood:
    task BuyFood(restaurant.has_food) for Restaurant as restaurant:
        target = restaurantFood()
    task Forage(berries.have_food) for Berries as berries:
        target = forageFood()

task Main:
    op()