limit min run

main
Brett 2025-01-08 19:17:08 -05:00
parent f9d57b3579
commit 830883930b
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.25) 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_ADDRSAN "Enable the address sanitizer" OFF)
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF) option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)

View File

@ -632,7 +632,7 @@ namespace fp
} }
// user can skip this if required. // user can skip this if required.
state << i - 1; state << std::max(i - 1, 0);
state << '\n'; state << '\n';
state << last_epoch_save; state << last_epoch_save;
state << '\n'; state << '\n';