INF205/lab_2/10_memleak/chain-random-walk.h

12 lines
261 B
C
Raw Normal View History

2024-02-27 17:37:22 +00:00
#ifndef CHAIN_RANDOM_WALK_H
#define CHAIN_RANDOM_WALK_H
namespace crw
{
float elongation(long size, float config[]);
float* step(long size, float previous[]);
void output(long no, long size, float present[], float extreme[], double avg_el);
}
#endif