Haeder hinzugefuegt

This commit is contained in:
Rebekka Haemmerl 2025-11-21 15:15:27 +01:00
parent edff235c12
commit 6b6080459f

View File

@ -4,11 +4,20 @@
#include <math.h> #include <math.h>
#include "unity.h" #include "unity.h"
#include "neuralNetwork.h" #include "neuralNetwork.h"
//Dateischichten sind in neuralNetwork.h definiert
static void prepareNeuralNetworkFile(const char *path, const NeuralNetwork nn) static void prepareNeuralNetworkFile(const char *path, const NeuralNetwork nn)
{ {
// TODO // Datei oeffnen
FILE *fopen(const char *NeuralNetwork, const char *r);
if (__info2_neural_network_file_format__ == NULL) return 1;
// Dateiname: __info2_neural_network_file_format__
// Datei wieder schließen!
int fclose(FILE *path);
} }
void test_loadModelReturnsCorrectNumberOfLayers(void) void test_loadModelReturnsCorrectNumberOfLayers(void)