sending starting positions to agents (not verified on AERPAW yet)

This commit is contained in:
2026-01-29 16:42:19 -08:00
parent fe106f31cd
commit aed1924297
20 changed files with 1398 additions and 155 deletions

View File

@@ -0,0 +1,16 @@
#include <iostream>
#include "controller.h"
#include "controller_impl.h" // TCP implementation header
int main() {
// Number of clients to handle
int numClients = 2; // for now
std::cout << "Initializing TCP server...\n";
// Call MATLAB-generated server function
controller(numClients);
std::cout << "Server finished.\n";
return 0;
}