void AtariNoGeomNoiseExperiment::initializeExperiment(string _rom_file) {
    initializeALE(_rom_file, false); // No screen processing necessary

    // Set the dimensions of our substrate to be that of the screen
    substrate_width = ale.screen_width / 10;
    substrate_height = ale.screen_height / 10;

    initializeTopology();
}
 void AtariNoGeomExperiment::initializeExperiment(string _rom_file) {
     initializeALE(rom_file, true);
     initializeTopology();
 }