Storm 1.14.0.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 <cstdint>
4#include <vector>
5
6namespace storm {
7namespace utility {
8namespace numerical {
9
10template<typename ValueType>
13
14 uint64_t left;
15 uint64_t right;
16 ValueType totalWeight;
17 std::vector<ValueType> weights;
18};
19
20template<typename ValueType>
21FoxGlynnResult<ValueType> foxGlynn(ValueType lambda, ValueType epsilon);
22
23} // namespace numerical
24} // namespace utility
25} // namespace storm
FoxGlynnResult< ValueType > foxGlynn(ValueType lambda, ValueType epsilon)
std::vector< ValueType > weights
Definition numerical.h:17