Commit aa1877e0 authored by Georgios Dagkakis's avatar Georgios Dagkakis

executor to read the attributes and send the to ImportInput

parent baae3145
...@@ -32,11 +32,10 @@ import time ...@@ -32,11 +32,10 @@ import time
from numpy import mean, std, array from numpy import mean, std, array
from operator import itemgetter from operator import itemgetter
def main(): def main(input, algorithmAttributes):
startTime = time.time() startTime = time.time()
ImportInput() ImportInput(input, algorithmAttributes)
if G.ACO == "all": if G.ACO == "all":
G.acoRange = [0,1] G.acoRange = [0,1]
G.minRange = {0:[0,1],1:[0,1]} G.minRange = {0:[0,1],1:[0,1]}
...@@ -47,7 +46,6 @@ def main(): ...@@ -47,7 +46,6 @@ def main():
G.acoRange = [0] G.acoRange = [0]
G.minRange = {0:[G.minDeltaUt]} G.minRange = {0:[G.minDeltaUt]}
for j in G.acoRange: for j in G.acoRange:
for i in G.minRange[j]: for i in G.minRange[j]:
initialiseVar() initialiseVar()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment