File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ cmake_minimum_required (VERSION 3.5 FATAL_ERROR)
4
4
project (gundam )
5
5
set (gundam_VERSION_MAJOR 1 )
6
6
set (gundam_VERSION_MINOR 2 )
7
- set (gundam_VERSION_REVISION 3 )
8
- set (gundam_VERSION_TAG "f " ) # f means forward -> include commits after a given release
7
+ set (gundam_VERSION_REVISION 4 )
8
+ set (gundam_VERSION_TAG "" ) # f means forward -> include commits after a given release
9
9
set (gundam_VERSION_STRING "${gundam_VERSION_MAJOR} .${gundam_VERSION_MINOR} .${gundam_VERSION_REVISION}${gundam_VERSION_TAG} " )
10
10
11
11
option (CMAKE_CXX_EXTENSIONS "Enable GNU extensions to C++ langauge (-std=gnu++14)." OFF )
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ class NormalizationDial : public Dial {
21
21
void fillResponseCache () override ;
22
22
23
23
private:
24
- double _priorValue_{std::nan (" unset" )};
24
+ // double _priorValue_{std::nan("unset")};
25
25
26
26
};
27
27
Original file line number Diff line number Diff line change @@ -27,12 +27,10 @@ void NormalizationDial::reset() {
27
27
28
28
void NormalizationDial::initialize () {
29
29
Dial::initialize ();
30
- LogThrowIf (_associatedParameterReference_ == nullptr , " Par reference not set." )
31
- _priorValue_ = ( (FitParameter*) _associatedParameterReference_ )->getPriorValue ();
32
30
_isInitialized_ = true ;
33
31
}
34
32
35
33
double NormalizationDial::evalResponse (double parameterValue_){
36
- return parameterValue_ * _priorValue_ ; // NO CACHE NEEDED ?
34
+ return parameterValue_; // NO CACHE NEEDED ?
37
35
}
38
36
You can’t perform that action at this time.
0 commit comments