first commit

This commit is contained in:
2025-11-02 21:46:02 +08:00
commit 17ba627f72
5 changed files with 358 additions and 0 deletions

8
CMakeLists.txt Normal file
View File

@@ -0,0 +1,8 @@
cmake_minimum_required(VERSION 4.0)
project(HG)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
set(CMAKE_CXX_STANDARD 26)
add_executable(HyperGraph main.cpp
HyperGraph.hpp)