NeroBlackstone / FIB.jl

Fast informed bound solver for POMDPs.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FIB

Build Status Coverage Status

Implements the fast informed bound (FIB) solver for POMDPs.

Installation

Pkg.clone("https://github.com/JuliaPOMDP/FIB.jl")

Usage

using FIB
using POMDPModels
pomdp = TigerPOMDP() # initialize POMDP

solver = FIBSolver()

# run the solver
policy = solve(solver, pomdp)   # policy is of type AlphaVectorPolicy

The result of solve is an AlphaVectorPolicy. This policy type is implemented in POMDPPolicies.jl.

FIB.jl solves problems implemented using the POMDPs.jl interface. See the documentation for POMDPs.jl for more information.

About

Fast informed bound solver for POMDPs.

License:Other


Languages

Language:Julia 100.0%