| 46 | string debugString() const; |
| 47 | |
| 48 | bool writeToBinFile(string name) const { |
| 49 | return (writeProtoToASCIIFile(info_, name+".info") && |
| 50 | offset_.writeToFile(name+".offset") && |
| 51 | index_.writeToFile(name+".index") && |
| 52 | (binary() || value_.writeToFile(name+".value"))); |
| 53 | } |
| 54 | |
| 55 | MatrixPtr<V> colBlock(SizeR range) const; |
| 56 | MatrixPtr<V> rowBlock(SizeR range) const; |
nothing calls this directly
no test coverage detected