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
6
namespace
storm
{
7
namespace
utility
{
8
namespace
numerical
{
9
10
template
<
typename
ValueType>
11
struct
FoxGlynnResult
{
12
FoxGlynnResult
();
13
14
uint64_t
left
;
15
uint64_t
right
;
16
ValueType
totalWeight
;
17
std::vector<ValueType>
weights
;
18
};
19
20
template
<
typename
ValueType>
21
FoxGlynnResult<ValueType>
foxGlynn
(ValueType lambda, ValueType epsilon);
22
23
}
// namespace numerical
24
}
// namespace utility
25
}
// namespace storm
storm::utility::numerical
Definition
numerical.cpp:13
storm::utility::numerical::foxGlynn
FoxGlynnResult< ValueType > foxGlynn(ValueType lambda, ValueType epsilon)
Definition
numerical.cpp:269
storm::utility
Definition
AutomaticSettings.cpp:14
storm
Definition
AutomaticSettings.cpp:13
storm::utility::numerical::FoxGlynnResult
Definition
numerical.h:11
storm::utility::numerical::FoxGlynnResult::FoxGlynnResult
FoxGlynnResult()
Definition
numerical.cpp:16
storm::utility::numerical::FoxGlynnResult::right
uint64_t right
Definition
numerical.h:15
storm::utility::numerical::FoxGlynnResult::totalWeight
ValueType totalWeight
Definition
numerical.h:16
storm::utility::numerical::FoxGlynnResult::weights
std::vector< ValueType > weights
Definition
numerical.h:17
storm::utility::numerical::FoxGlynnResult::left
uint64_t left
Definition
numerical.h:14
src
storm
utility
numerical.h
Generated by
1.15.0