Commit ae64f473 authored by David Hendriks's avatar David Hendriks
Browse files

Removed some of the verbose output

parent c8245128
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -203,7 +203,7 @@ def from_binary_c_config(config_file: str, flag: str) -> str:

    # convert and chop off newline
    res = res.decode("utf-8").rstrip()
    print(res)
    # print(res)

    return res

@@ -360,7 +360,7 @@ def compile_shared_lib(
            )
        )
    res = subprocess.check_output("{command}".format(command=command), shell=True)
    print(res)
    # print(res)
    if verbose > 0:
        if res:
            print("Output of compilation command:\n{}".format(res))
+1 −1
Original line number Diff line number Diff line
@@ -1019,7 +1019,7 @@ class Population:
                break

        # Extra ensemble result manipulation:
        combined_output_dict['ensemble_results']['ensemble'] = self.format_ensemble_results(combined_output_dict['ensemble_results']['ensemble'])
        combined_output_dict['ensemble_results']['ensemble'] = self.format_ensemble_results(combined_output_dict['ensemble_results'].get('ensemble', {}))
        gc.collect()

        # Take into account that we run this on multiple cores