LLNL / zfp

Compressed numerical arrays that support high-speed random access

Home Page:http://zfp.llnl.gov

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Missing ZFP_VERSION_DEVELOP variable in version.h

jwsblokland opened this issue · comments

Hello @GarrettDMorrison and @lindstro ,

A moment ago, I noticed in the develop branch that the recently introduced variable ZFP_VERSION_DEVELOP in include/zfp/version.h has been removed.

Is this done intentionally or is it a mistake during the merge?

Best regards,
Jan-Willem

@jwsblokland That is indeed intentional. ZFP_VERSION_DEVELOP is undefined when develop matches the latest release (release1.0.0 in this case). As soon as we add commits to develop, this macro will again be defined. See the documentation.

@lindstro Ah thanks for explaining it and pointing me to the documentation. I did not expect to work like this, but it is properly documented so I should have read to documentation more carefully.