Peter Caspers
Peter Caspers
Which cmake version are you using? The check_linker_flag() function that the configure step is complaining about was added in 3.18: https://cmake.org/cmake/help/latest/module/CheckLinkerFlag.html
I realize that our cmake version check is not correct, if you have a major version >= 4: ``` if(CMAKE_MINOR_VERSION GREATER 18 OR CMAKE_MINOR_VERSION EQUAL 18) include(CheckLinkerFlag) endif() ``` If...
Test 1 are the examples right? They should run, but there might be a problem with locating the ore executable. You can check with: `ctest -R examples -V` The logic...
This will be fixed in the upcoming 1.8.13.1 release
Thanks for your feedback @eltoder. The changes were not meant to be complete. I just wanted to sketch one possible approach to start the discussion. You are right, what I...
Yes, indeed. The custom weights are a much better approach.
Actually no, but there is a non-standard element in our setup alright: We have a class A inheriting von LazyObject. An instance of class A observes an instance of class...
I mean the doc of `recalculate()` says ``` \note Explicit invocation of this method is not necessary if the object registered itself as observer with the structures on which such...
So are we saying that if `calculated_` is `false` at the end of `LazyObject::calculate()` that this is a hint for "wrong" usage of classes in some sense? On the other...
Yes, I'll try to make this change in our library and test that for a while, I might open a PR against QuantLib then. Our setup is not mature here,...