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

agents.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;
    }