Christian Kellner

Results 89 comments of Christian Kellner

[bolt.spec](https://github.com/gicmo/bolt/blob/master/contrib/bolt.spec.in) is an example of how to do it.

Currently we have: - `DataSet`: abstract base class/interface of a rectangular homogeneous n-dimensional data container, i.e. it has `dataExtend() → NDSize` (n-dim rectangular), and `dataType() → DataType` (homogeneous). - `DataArray`:...

My reasoning about why this is happened turned out to be correct but the best description, and possible solutions are given here: - http://www.unknownroad.com/rtfm/VisualStudio/warningC4251.html - http://support.microsoft.com/default.aspx?scid=KB;EN-US;168958

I will deal with this mess for the Second Alpha

Could also be used to query backend file format version, and have checks to see if a given file can be opened in what mode (read, write) or not at...

Pull-request #378 handles the basic reading part but leaves following things to do: - [ ] throw exception when writing data with a (non-invertable?) polynomial set - [ ] throw...

@stoewer yes. In order to support optimisations that require special memory handling (e.g. OpenCL) we probably have to abstract even more then just `applyPolynomial`, i.e. the allocation of temporary buffer...

Just as a heads-up: with #378 I will take care of `expansionOrigin` next.

Note to self (and others): I am not really 100% comfortable with `read_buffer = reinterpret_cast(data);` (introduced by pull-request #378) due to strict aliasing. Before we close this bug, I want...