mirror of
https://github.com/infiniteCable2/openpilot.git
synced 2026-09-27 18:13:41 +08:00
510b718f0f
old-commit-hash: da079d47d7d9496723117700ae1bb51c1f1abc38
13 lines
243 B
C++
13 lines
243 B
C++
#ifndef RUNMODEL_H
|
|
#define RUNMODEL_H
|
|
|
|
class RunModel {
|
|
public:
|
|
virtual void addRecurrent(float *state, int state_size) {}
|
|
virtual void addDesire(float *state, int state_size) {}
|
|
virtual void execute(float *net_input_buf) {}
|
|
};
|
|
|
|
#endif
|
|
|