Storm 1.11.1.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
numerical.h
Go to the documentation of this file.
1#pragma once
2
3#include <vector>
4
5namespace storm {
6namespace utility {
7namespace numerical {
8
9template<typename ValueType>
12
13 uint64_t left;
14 uint64_t right;
15 ValueType totalWeight;
16 std::vector<ValueType> weights;
17};
18
19template<typename ValueType>
20FoxGlynnResult<ValueType> foxGlynn(ValueType lambda, ValueType epsilon);
21
22} // namespace numerical
23} // namespace utility
24} // namespace storm
FoxGlynnResult< ValueType > foxGlynn(ValueType lambda, ValueType epsilon)
std::vector< ValueType > weights
Definition numerical.h:16