From 5e0b534e1f285c6df97dfbdd9b55146ae6e34923 Mon Sep 17 00:00:00 2001 From: nirlipo Date: Mon, 3 Jul 2017 18:47:36 +1000 Subject: [PATCH] is_better called by node --- interfaces/agnostic/novelty_partition.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interfaces/agnostic/novelty_partition.hxx b/interfaces/agnostic/novelty_partition.hxx index df691da6..723a8457 100644 --- a/interfaces/agnostic/novelty_partition.hxx +++ b/interfaces/agnostic/novelty_partition.hxx @@ -440,8 +440,8 @@ protected: } inline bool is_better( Search_Node* n,const Search_Node* new_n ) const { - return false; - //return new_n->is_better( n ); + //return false; + return new_n->is_better( n ); }