From b6354751fdc129faaa43d0961f57b667296d6ffb Mon Sep 17 00:00:00 2001 From: mihaiconstantin Date: Sun, 9 Apr 2023 13:40:07 +0200 Subject: [PATCH] Style: add comment for `IsingModel` class --- R/IsingModel.R | 1 + 1 file changed, 1 insertion(+) diff --git a/R/IsingModel.R b/R/IsingModel.R index 3eaa979..0d8bbe0 100644 --- a/R/IsingModel.R +++ b/R/IsingModel.R @@ -3,6 +3,7 @@ # Extract the un-exported `C++` sampler from the `IsingSampler` namespace. IsingSamplerCpp <- utils::getFromNamespace("IsingSamplerCpp", "IsingSampler") +# Ising model implementation. IsingModel <- R6::R6Class("IsingModel", inherit = Model,