tipe/src/cnn/include/utils.h

17 lines
282 B
C
Raw Normal View History

2022-09-28 12:42:44 +02:00
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include "../../colors.h"
#include "struct.h"
#ifndef DEF_UTILS_H
#define DEF_UTILS_H
/*
* Vérifie si deux réseaux sont égaux
*/
bool equals_networks(Network* network1, Network* network2);
#endif