Changeset 247 for cpp/frams/genetics/f4/f4_general.h
- Timestamp:
- 11/07/14 17:51:01 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/f4/f4_general.h
r197 r247 101 101 int onestep(); // execute one simulation step (till a division) 102 102 103 int addlink(f4_Cell * nfrom, double nw, longnt);103 int addlink(f4_Cell * nfrom, double nw, int nt); 104 104 void adjustRec(); 105 105 … … 129 129 //f4_OrientMat OM; 130 130 double mz; // freedom in z 131 longp2_refno; // number of last end part object, used in f0132 longjoint_refno; // number of the joint object, used in f0133 longneuro_refno; // number of the neuro object, used in f0134 135 longctrl; // neuron type131 int p2_refno; // number of last end part object, used in f0 132 int joint_refno; // number of the joint object, used in f0 133 int neuro_refno; // number of the neuro object, used in f0 134 135 int ctrl; // neuron type 136 136 double state; 137 137 double inertia; … … 147 147 { 148 148 public: 149 f4_CellLink(f4_Cell * nfrom, double nw, longnt);149 f4_CellLink(f4_Cell * nfrom, double nw, int nt); 150 150 f4_Cell * from; 151 151 // type: 0: input, 1 '*', 2 'G', 3 'T', 4 'S' 152 longt;152 int t; 153 153 double w; 154 154 }; … … 205 205 int pos; // original position in string 206 206 int i1; // internal int parameter1 207 longl1; // internal long parameter1207 int l1; // internal long parameter1 208 208 double f1; // internal double parameter1 209 209
Note: See TracChangeset
for help on using the changeset viewer.