From 4037d0e5fd4c7e9e92b32b1dcea1897d6e113e8e Mon Sep 17 00:00:00 2001 From: Carleton Coffrin Date: Tue, 22 Feb 2022 19:12:04 -0700 Subject: [PATCH] prep for v0.1 release --- CHANGELOG.md | 3 +++ Project.toml | 2 +- src/simulate_de.jl | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b77b9c1..5166f39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ QuantumAnnealing.jl Change Log ============================== ### Staged +- nothing + +### v0.1.0 - Add variant of `solve_de` with adaptive solve tolerance - Add tools for working with classical Ising models (#8) - Add data processing tools (#6) diff --git a/Project.toml b/Project.toml index 635fefc..641bf15 100644 --- a/Project.toml +++ b/Project.toml @@ -2,7 +2,7 @@ name = "QuantumAnnealing" uuid = "4832667a-bab9-40a8-88f6-be9efce3ea89" authors = ["Zach Morrell, Carleton Coffrin, Marc Vuffray"] repo = "https://github.com/lanl-ansi/QuantumAnnealing.jl" -version = "0.0.1" +version = "0.1.0" [deps] CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b" diff --git a/src/simulate_de.jl b/src/simulate_de.jl index 9ceaeda..f027dec 100644 --- a/src/simulate_de.jl +++ b/src/simulate_de.jl @@ -52,7 +52,7 @@ end """ -A simplified interface to the `simulate_de` routine that determines a +A simplified interface to the `simulate_de` routine that determines suitable tolerance values to ensure a high accuracy simulation. The parameters `mean_tol` and `max_tol` specify the desired simulation accuracy. The `silence` parameter can be used to suppress the progress log.