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