From d998a034a3c9ccef25f582f6aeb21c1317824d2e Mon Sep 17 00:00:00 2001 From: Alex Selimov Date: Thu, 12 Dec 2024 23:01:42 -0500 Subject: [PATCH] Initial commit and adding README --- Cargo.toml | 6 ++++++ README.md | 4 ++++ 2 files changed, 10 insertions(+) create mode 100644 Cargo.toml create mode 100644 README.md 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.