asclass AbstractCompressor_AnyType extends Probabilistic {
CompressionSearch_AnyType search;
*() {}
*(CompressionSearch_AnyType *search) {}
void setSearch(CompressionSearch_AnyType search) {
if (this.search != null && this.search != search) fail();
this.search = search;
}
CompressionRegime_AnyType regime() { ret search?.regime(); }
// get current best compressed representation
//abstract A currentBestDecompressor aka get();
}