Changeset 1130 for cpp/frams/neuro/impl/neuroimpl-fuzzy-f0.cpp
- Timestamp:
- 04/16/21 15:55:34 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/neuro/impl/neuroimpl-fuzzy-f0.cpp
r973 r1130 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-202 0Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2021 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 7 7 8 8 #include "neuroimpl-fuzzy-f0.h" 9 #include < common/nonstd_stl.h> //min,max9 #include <algorithm> 10 10 11 11 //this part concerns fuzzy sets transformation … … 132 132 return -1; 133 133 if ((k >= inNr) && ((k % 2) == 0)) 134 maxOutputNr = max(maxOutputNr, rules[j][k]);134 maxOutputNr = std::max(maxOutputNr, rules[j][k]); 135 135 } 136 136 }
Note: See TracChangeset
for help on using the changeset viewer.