commit d998a034a3c9ccef25f582f6aeb21c1317824d2e Author: Alex Selimov Date: Thu Dec 12 23:01:42 2024 -0500 Initial commit and adding README diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..e1279b8 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "roptimize" +version = "0.1.0" +edition = "2021" + +[dependencies] diff --git a/README.md b/README.md new file mode 100644 index 0000000..d52b385 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# Roptimize + +This is a collection of optimization algorithms collected into one crate. +Planning on starting with some gradient descent based algorithms and then adding heuristic approaches.