wip demo mode

This commit is contained in:
2025-09-20 17:40:42 +02:00
parent 884f236e7e
commit 125c8fb324
10 changed files with 147 additions and 26 deletions
+4
View File
@@ -1,11 +1,13 @@
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include "args.h"
#include "config.h"
#include "forge.h"
#include "main.h"
#include "rand.h"
int main(int argc, char **argv) {
Parameters params;
@@ -14,6 +16,8 @@ int main(int argc, char **argv) {
puts(PACKAGE " " VERSION);
set_seed((unsigned long)time(NULL));
forge_run(params);
return EXIT_SUCCESS;