Evaluate remaining red/green time for upcoming intersection
This commit is contained in:
parent
933106b7ea
commit
7463adb038
12 changed files with 2979 additions and 103 deletions
13
src/test.rs
13
src/test.rs
|
|
@ -1,10 +1,23 @@
|
|||
#![cfg(not(target_arch = "riscv32"))]
|
||||
#![allow(unused)]
|
||||
|
||||
extern crate alloc;
|
||||
|
||||
mod applogic;
|
||||
mod cache;
|
||||
mod geo_alg;
|
||||
mod testdata;
|
||||
|
||||
fn main() {
|
||||
// env_logger::init();
|
||||
// dummy only
|
||||
}
|
||||
|
||||
/// Initializes the env-logger to be used inside tests
|
||||
fn init_test_env_logger() {
|
||||
let _ = env_logger::builder()
|
||||
.format_timestamp(None)
|
||||
.filter_level(log::LevelFilter::Debug)
|
||||
.is_test(true)
|
||||
.try_init();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue