Skip to content

Instantly share code, notes, and snippets.

@zv
Last active November 2, 2015 22:25
Show Gist options
  • Save zv/7ec2f0fe207350a9e702 to your computer and use it in GitHub Desktop.
Save zv/7ec2f0fe207350a9e702 to your computer and use it in GitHub Desktop.
top tier microsoft research
hilbert_basis::hilbert_basis():
m_cancel(false),
m_use_support(true),
m_use_ordered_support(true),
m_use_ordered_subsumption(true)
{
m_index = alloc(index, *this);
m_passive = alloc(passive, *this);
m_passive2 = alloc(passive2, *this);
}
hilbert_basis::~hilbert_basis() {
dealloc(m_index);
dealloc(m_passive);
dealloc(m_passive2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment