Skip to content

Latest commit

 

History

History
186 lines (104 loc) · 2.12 KB

CppCln.md

File metadata and controls

186 lines (104 loc) · 2.12 KB

 

 

 

 

 

 

CLN (abbreviation of 'Class Library for Numbers') is a library to work with arbitrary precision data types.

 

 

 

 

 

 

 

Information about installing CLN, can be found at the page about installing CLN.

 

 

 

 

 

 

Information about porting CLN, can be found at the page about porting CLN.

 

 

 

 

 

 

  1. cln::cl_I (integer)

 

 

 

 

 

CLN examples

 

 

 

 

 

 

Qt Creator Note for Qt Creator users

 

Add the following line to your project file (to prevent link errors):

 


LIBS += -lcln

 

 

 

 

 

My CLN review

 

In general, I'd review CLN positively.

 

Pros:

 

  • Easy to use under Linux, as it comes built with many distributions
  • According to apfloat, it is superior (compared to apfloat)

 

Cons:

 

  • I never succeeded installing under Windows
  • Code comments are in German

 

 

 

 

 

External links