Skip to content

JuliaPOMDP/FIB.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FIB

Build Status codecov

Implements the fast informed bound (FIB) solver for POMDPs. FIB is discussed in Sec. 21.2 of:

Installation

Pkg.add("FIB")
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 POMDPTools.jl.

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