Skip to content
Snippets Groups Projects
Select Git revision
  • b7a0a83c3c8add0a349f463988c866a9ae61d24d
  • master default protected
  • change_modified_reward_v0
  • feature_carla_szenarios
  • develop_moreSensorsInCarla
  • feature_carlaSupport
  • LearningEnvironment
7 results

environment_wrapper.py

Blame
  • shift-02.c 176 B
    #include <stdio.h>
    #include <stdint.h>
    #include <inttypes.h>
    
    int main (void)
    {
      uint64_t a0 = 5;
      int tomp = 0;
      printf ("%" PRId64 "\n", a0 >> (64 - tomp));
      return 0;
    }