limit min run
parent
f9d57b3579
commit
830883930b
|
@ -1,5 +1,5 @@
|
|||
cmake_minimum_required(VERSION 3.25)
|
||||
project(COSC-4P80-Final-Project VERSION 0.0.19)
|
||||
project(COSC-4P80-Final-Project VERSION 0.0.20)
|
||||
|
||||
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
|
||||
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)
|
||||
|
|
|
@ -632,7 +632,7 @@ namespace fp
|
|||
}
|
||||
|
||||
// user can skip this if required.
|
||||
state << i - 1;
|
||||
state << std::max(i - 1, 0);
|
||||
state << '\n';
|
||||
state << last_epoch_save;
|
||||
state << '\n';
|
||||
|
|
Loading…
Reference in New Issue