Skip to content

Commit

Permalink
Required API change for pull opencog/atomspace#2571
Browse files Browse the repository at this point in the history
  • Loading branch information
linas committed May 5, 2020
1 parent aee2fe2 commit a55ac9f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion opencog/miner/MinerUtils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,9 @@ Handle MinerUtils::restricted_satisfying_set(const Handle& pattern,
sater.max_results = ms;
GetLinkCast(gl)->satisfy(sater);

return Handle(createUnorderedLink(sater._satisfying_set, SET_LINK));
QueueValuePtr qv(sater.get_result_queue());
HandleSeq hs(qv->to_handle_seq());
return Handle(createUnorderedLink(std::move(hs), SET_LINK));
}

bool MinerUtils::totally_abstract(const Handle& pattern)
Expand Down

0 comments on commit a55ac9f

Please sign in to comment.