Regarding 1), we should definitely get rid of data that we don't need.
Regarding 2), I'd prefer the least complex suggestion in terms of maintenance,
data integrity etc., which I think means adding a flag to turn storage on/off
isn't the most preferred solution. From the way this is currently used, I'd
suggest simply adding a method that computes this information on demand and
returns a vector of relevant operators. Rather than returning a vector<bool>, it
would be preferable to return a vector of indices. The method should be called
something like "compute_..." rather than "get_..." to make clear it requires
substantial computation rather than just returning a stored attribute.
Once we do this, I think we can also get rid of "op_no" attributes in various
places, and build_abstract_operator could perhaps be passed an operator rather
than an operator number.
Looking over the class, I also found two small things that we might fix at the
same time:
- I don't think it makes sense to report the average h value for an empty
pattern as infinity. It should be 0. Are we supporting empty patterns properly
everywhere?
- The comments in the header file are very nice, but they should be rewrapped to
our usual line length.
|