Files
Flux/include/numerics/max.h
T
Bausager 66b3a4ee6b
Sync public mirror / sync (push) Successful in 27s
CatagoricalCrossentrophy
Fixed the loss functions for categories and is ready for accuracy calculation on page 129
2025-10-07 13:09:25 +02:00

17 lines
171 B
C++

#pragma once
namespace numerics{
template <typename T>
T max(const T a, const T b){
if(a < b){
return b;
}else{
return a;
}
}
} // namespace numerics