Created
July 26, 2018 06:58
-
-
Save KKostya/690b864f2148fc45ca30d62f527ef2db to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let under_threshold x = x < 20000 | |
lemma lemma1 state = | |
let open Sensor_msgs in | |
match state.incoming with None | Some (Clock _ ) -> true | |
| Some ( Sensor data ) -> | |
( data.laserScan_ranges <> [] | |
&& under_threshold (get_min_range data.laserScan_range_max data.laserScan_ranges) | |
) ==> (one_step state).mode = Turning |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment