Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 1013 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 1013 Bytes

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)