Verify deterministic movement from observations

Co-authored-by: codegirl007 <codegirl-007@users.noreply.github.com>
This commit is contained in:
Cursor Agent
2026-08-17 16:49:37 +00:00
co-authored by codegirl007
parent 3037dbc2dd
commit c4f8dbeaaf
7 changed files with 154 additions and 23 deletions
+6 -6
View File
@@ -24,12 +24,12 @@ const (
)
type InputAction struct {
Type InputType `json:"type"`
Key string `json:"key,omitempty"`
X int `json:"x,omitempty"`
Y int `json:"y,omitempty"`
Button int `json:"button,omitempty"`
Duration time.Duration `json:"duration,omitempty"`
Type InputType `json:"type"`
Key string `json:"key,omitempty"`
X int `json:"x,omitempty"`
Y int `json:"y,omitempty"`
Button int `json:"button,omitempty"`
DurationMS int `json:"duration_ms,omitempty"`
}
type LogEntry struct {