An error occurred while fetching participants.
BUG: caching update default
I found that the default of cachingType is None. This is wrong because the variable name is misleading. CachingType None means that the matrix is converted only one time and never updated. This is the source of crashing of most of the tutorial cases. The default must be "always", that is matrix is converted at each time step.
The correct name for this variable should be cachingUpdateType, since the adverb refers to the update mechanism of the caching.
//- Supported caching types
enum cachingTypes
{
None,
Always,
Periodic,
Adaptive
};