From cc7cf3c8c7677eef3b623218658347885614ffd4 Mon Sep 17 00:00:00 2001 From: raj_mathe Date: Thu, 9 Jun 2022 15:43:28 +0200 Subject: [PATCH] master > master: code py - main umgezogen --- code/python/{src => }/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename code/python/{src => }/main.py (98%) diff --git a/code/python/src/main.py b/code/python/main.py similarity index 98% rename from code/python/src/main.py rename to code/python/main.py index 2da3148..065585f 100644 --- a/code/python/src/main.py +++ b/code/python/main.py @@ -12,7 +12,7 @@ os.chdir(os.path.join(os.path.dirname(__file__), '..')); sys.path.insert(0, os.getcwd()); from src.core.log import *; -from src.local.maths import *; +from src.thirdparty.maths import *; from src.graphs.graph import *; from src.graphs.tarjan import *; from src.travel.naive import *;