From 52095af5e6d9f4c816830aef8b043023321b1d6e Mon Sep 17 00:00:00 2001 From: mkirsz <s1351949@sms.ed.ac.uk> Date: Tue, 30 Jan 2024 10:59:13 +0000 Subject: [PATCH] This function must be in the train interface b/c of the MD class --- m_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m_core.h b/m_core.h index 56f827b..aaec72b 100644 --- a/m_core.h +++ b/m_core.h @@ -11,7 +11,6 @@ class M_Core { virtual ~M_Core() {} - virtual t_type get_weights_uncertainty()const=0; bool is_trained() const { return trained; @@ -51,5 +50,6 @@ class M_Train { public: virtual ~M_Train() {} virtual void train(phi_type &Phi, const t_type &T)=0; + virtual t_type get_weights_uncertainty()const=0; }; #endif -- GitLab