MCPcopy Create free account
hub / github.com/RustOtomeLab/RustEng / Executor

Class Executor

src/executors/executor.rs:42–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40 "no" => (0.25, 0.16667), // 1/6
41 _ => (0.34, 0.125),
42 };
43
44 let (base_x, base_y) = if position.starts_with('(') && position.ends_with(')') {
45 let inner = &position[1..position.len() - 1];
46 let parts: Vec<&str> = inner.split(',').collect();
47 if parts.len() == 2 {
48 (
49 parts[0].trim().parse().unwrap_or(0.33),
50 parts[1].trim().parse().unwrap_or(default_base_y),
51 )
52 } else {
53 (0.33, default_base_y)
54 }
55 } else {
56 let bx = match position {

Callers 1

fromMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected