CellularAutomata
Loading...
Searching...
No Matches
epoch.hpp
1#pragma once
2
3namespace CellularAutomata
4{
17 template <typename T, typename Activation>
18 void Epoch(State<T>* state, Kernel<T>* kernel, Activation activation, bool recursive);
19}
20
21#include "epoch.inl"
Main namespace.
Definition common.hpp:33
void Epoch(State< T > *state, Kernel< T > *kernel, Activation activation, bool recursive)
Runs a single epoch on a given state using a kernel.
Definition epoch.inl:14