Ignore:
Timestamp:
02/04/20 19:18:52 (4 years ago)
Author:
Maciej Komosinski
Message:

Code formatting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/neuro/impl/neuroimpl-simple.cpp

    r791 r907  
    2121{
    2222        double sum = getWeightedInputSum();
    23         velocity = force*(sum - istate) + inertia*velocity;
     23        velocity = force * (sum - istate) + inertia * velocity;
    2424        istate += velocity;
    2525        if (istate > NEURO_MAX) istate = NEURO_MAX;
Note: See TracChangeset for help on using the changeset viewer.