From 2800a8d0d96ef56564fc47e2c64c436b3f00e38d Mon Sep 17 00:00:00 2001
From: Oliver Sander <oliver.sander@tu-dresden.de>
Date: Fri, 17 May 2019 16:21:33 +0200
Subject: [PATCH] Use relative path to specify location of Python files

Previously, the layout of my computer's file system was
hard-coded here.
---
 src/harmonicmaps.cc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/harmonicmaps.cc b/src/harmonicmaps.cc
index 3cbab5cd..0700d120 100644
--- a/src/harmonicmaps.cc
+++ b/src/harmonicmaps.cc
@@ -130,7 +130,8 @@ int main (int argc, char *argv[])
     //feenableexcept(FE_INVALID);
     Python::runStream()
         << std::endl << "import sys"
-        << std::endl << "sys.path.append('/home/sander/dune/dune-gfe/problems')"
+        << std::endl << "import os"
+        << std::endl << "sys.path.append(os.getcwd() + '/../../problems/')"
         << std::endl;
 
 
-- 
GitLab