Skip to content

JuliaPOMDP/NativeSARSOP.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NativeSARSOP

CI codecov

NativeSARSOP is a native julia implementation of the SARSOP POMDP algorithm. It has comparable speed to the wrapped C++ solver, but avoids the bottleneck of writing to a pomdpx file, so it can often find a result in less total time.

Installation

It is recommended that you have POMDPs.jl installed. To install SARSOP run the following command:

] add NativeSARSOP

Example Usage

using POMDPs
using NativeSARSOP
using POMDPModels

pomdp = TigerPOMDP()
solver = SARSOPSolver()
policy = solve(solver, pomdp)