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