/* Copyright (C) 2020 Dylan Staatz - All Rights Reserved. */
pub use crate::obstacles::obstacles_3d_f32::*;
////////////////////////////////////////////////////////////////////////////////
use crate::cspace::leader_follower::LeaderFollowerSpace;
use crate::path_planner::RunPathPlanner;
use crate::rrtx::{Rrtx, RrtxState};
pub const D: usize = 3;
pub const N: usize = D * 2;
pub type CS = LeaderFollowerSpace<X, D, N>;
pub type PP = Rrtx<X, CS, OS, N>;
pub type State = RrtxState<X, CS, OS, N>;
pub type Rrtx3df32Dual = RunPathPlanner<X, CS, OS, PP, N>;