You don't need to make the destructor abstract, just give it a empty implementation:
virtual void ~criterion() { }
This way you are not forced to implement it in every child class, but still each of them will have a (inherited) virtual destructor.
