Skip to content

Commit

Permalink
fixed particle example, some more consistency in importing python mod…
Browse files Browse the repository at this point in the history
…ules
  • Loading branch information
muellermichel committed Jan 29, 2016
1 parent 14653a1 commit 1a0ca9e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/particle/config/MakesettingsGeneral
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ SOURCE_THIS_AFTER_TESTING=
#tests, you can create a run-script in a test-subdirectory together with all the input data you need and you can specify these script paths here.
#separate with spaces and surround the list with double quotes.
# ! your scripts specified here should take one input argument 'ARCH' and call your executables with _$ARCH postfix in the filename !
TEST_EXECUTABLES="test/run.sh"
TEST_EXECUTABLES=""

# !New in Version 0.9
#OPTIONAL, can be used to specify the naming pattern of files that are being created by your tests, as seen from the respective executable's directory.
Expand Down
2 changes: 1 addition & 1 deletion hf/machinery/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from tools.analysis import SymbolDependencyAnalyzer, getAnalysisForSymbol, getArguments
from tools.patterns import RegExPatterns
from machinery.parser import H90CallGraphAndSymbolDeclarationsParser, getSymbolsByName, currFile, currLineNo
from commons import FortranCodeSanitizer
from machinery.commons import FortranCodeSanitizer

def getModuleArraysForCallee(calleeName, symbolAnalysisByRoutineNameAndSymbolName, symbolsByModuleNameAndSymbolName):
moduleSymbols = []
Expand Down
2 changes: 1 addition & 1 deletion hf/machinery/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
from tools.commons import UsageError, BracketAnalyzer
from tools.analysis import SymbolDependencyAnalyzer, getAnalysisForSymbol, getArguments
from tools.patterns import RegExPatterns
from commons import FortranRoutineArgumentParser, FortranCodeSanitizer
from machinery.commons import FortranRoutineArgumentParser, FortranCodeSanitizer

currFile = None
currLineNo = None
Expand Down

0 comments on commit 1a0ca9e

Please sign in to comment.