From bbfd67c2b1f27dc3cf8ef899aca3d008161cbf77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Henrotte?= <francois.henrotte@uclouvain.be> Date: Thu, 25 Oct 2018 12:55:47 +0200 Subject: [PATCH] use pythonic underscored notation --- Ccore/ccore.geo | 2 +- Ccore/ccore.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Ccore/ccore.geo b/Ccore/ccore.geo index 178d01c..80e8bd7 100644 --- a/Ccore/ccore.geo +++ b/Ccore/ccore.geo @@ -102,4 +102,4 @@ Physical Surface("COILN", 4) = 4; Physical Line("DIR", 11) = {1 ... 4}; -Include "OnelabOptimize.geo"; +Include "onelab_optimize.geo"; diff --git a/Ccore/ccore.py b/Ccore/ccore.py index ea9aef3..babae4c 100644 --- a/Ccore/ccore.py +++ b/Ccore/ccore.py @@ -1,3 +1,3 @@ -import OnelabOptimize -OnelabOptimize.minimize('ccore') +import onelab_optimize +onelab_optimize.minimize('ccore') -- GitLab