Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
powei-lin committed Mar 23, 2024
1 parent 93e9b84 commit 95addae
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tiny-solver"
version = "0.3.4"
version = "0.4.0"
edition = "2021"
authors = ["Powei Lin <poweilin1994@gmail.com>"]
readme = "README.md"
Expand All @@ -26,7 +26,6 @@ rayon = "1.9.0"

[[example]]
name = "m3500_benchmark"
# crate-type = ["bin"]
path = "examples/m3500_benchmark.rs"

[features]
Expand Down
12 changes: 4 additions & 8 deletions src/python/py_factors.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
use num_dual::{python::PyDual64Dyn, Dual64, DualDVec64};
use numpy::{PyArray, PyReadonlyArrayDyn};
use numpy::{PyArray2, PyReadonlyArray1, ToPyArray};
use std::collections::HashMap;

use nalgebra as na;
use pyo3::types::{PyDict, PyList, PyTuple};

use pyo3::{exceptions::PyTypeError, prelude::*};
use num_dual::python::PyDual64Dyn;
use numpy::PyReadonlyArray1;
use pyo3::prelude::*;
use pyo3::types::PyTuple;

use crate::factors::*;

Expand Down

0 comments on commit 95addae

Please sign in to comment.