Changeset 973 for cpp/frams/neuro/impl
- Timestamp:
- 07/03/20 00:37:13 (4 years ago)
- Location:
- cpp/frams/neuro/impl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/neuro/impl/neuroimpl-fuzzy-f0.cpp
r827 r973 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-20 15Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2020 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 83 83 int FuzzyF0String::convertStrToRules(const SString& str, const int ruledef[], int **rules, int setsNr, int rulesNr, int &maxOutputNr) 84 84 { 85 int pos = 0, j, k, len = str.len ();85 int pos = 0, j, k, len = str.length(); 86 86 int dNr = 0, sNr = 0; 87 87 int inNr, outNr; //number of inputs/outputs and corresponding fuzzy sets -
cpp/frams/neuro/impl/neuroimpl-fuzzy.cpp
r907 r973 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-20 15Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2020 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 21 21 22 22 //check correctness of given parameters: string must not be null, sets&rules number > 0 23 if ((fuzzySetsNr < 1) || (rulesNr < 1) || (fuzzySetString.len () == 0) || (fuzzyRulesString.len() == 0))23 if ((fuzzySetsNr < 1) || (rulesNr < 1) || (fuzzySetString.length() == 0) || (fuzzyRulesString.length() == 0)) 24 24 return 0; //error 25 25
Note: See TracChangeset
for help on using the changeset viewer.