remove python stuff & simple DQN implementation

This commit is contained in:
Henri Bourcereau 2025-05-24 22:41:44 +02:00
parent 3d01e8fe06
commit 480b2ff427
19 changed files with 608 additions and 989 deletions

View file

@ -1,11 +1,9 @@
use serde::{Deserialize, Serialize};
use std::fmt;
use pyo3::prelude::*;
// This just makes it easier to dissern between a player id and any ol' u64
pub type PlayerId = u64;
#[pyclass]
#[derive(Copy, Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum Color {
White,