Commit d5f90a06 authored by Leon Pyka's avatar Leon Pyka
Browse files

second run: offset 10

parent 9e8f2a53
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -334,7 +334,7 @@ void get_from_command_line(int argc, char **argv, std::string name, T &a) {

int main(int argc, char **argv) 
{    
    uint32_t Nx = 512;
    uint32_t Nx = 50;
    get_from_command_line<>(argc,argv,"Nx",Nx);
    std::cout << "Nx=" << Nx << std::endl;
    IVstorage ivs;
+1 −1
Original line number Diff line number Diff line
@@ -69,7 +69,7 @@ def run_a_simulation_fuse(seed, offset):

if __name__=="__main__":
    list_of_seeds =  []
    offset = 1
    offset = 10
    for seed in range(1000, 1050):
        list_of_seeds.append(seed) 
    with Pool(50) as p: