Changeset 1299 for cpp/frams/genetics/fH/fH_general.cpp
- Timestamp:
- 03/29/24 23:34:00 (13 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/fH/fH_general.cpp
r1261 r1299 352 352 } 353 353 354 unsigned int stickscount = children->size() + 1;354 size_t stickscount = children->size() + 1; 355 355 356 356 MultiRange ranges; … … 469 469 // next stick is selected by minimum distance between first vector of its handle 470 470 // and second vector of any existing StickHandle in body 471 int remaining = sticks.size() - 2;471 int remaining = int(sticks.size()) - 2; 472 472 while (remaining > 0) 473 473 { … … 880 880 int fH_Builder::removeNeuronsWithInvalidClasses() 881 881 { 882 int count = neurons.size();882 int count = (int)neurons.size(); 883 883 if (count == 0) 884 884 { … … 913 913 914 914 } 915 return count - neurons.size();915 return count - (int)neurons.size(); 916 916 } 917 917
Note: See TracChangeset
for help on using the changeset viewer.