Browse Source

* some notes I had in an old checkout.

git-svn-id: trunk@17982 -
marco 14 years ago
parent
commit
ad60e9a467
1 changed files with 12 additions and 2 deletions
  1. 12 2
      packages/numlib/numlib.txt

+ 12 - 2
packages/numlib/numlib.txt

@@ -31,7 +31,9 @@ throughout the entire library. If the floating point type is changed,
 define or undefine ArbExtended and add the machineconstants change to
 define or undefine ArbExtended and add the machineconstants change to
 the type selected.
 the type selected.
 
 
-This allows IEEE Double (64bit) and Extended(80bit).
+This allows to switch between IEEE Double (64bit) and Extended(80bit),
+though big endian state is unknown (and probably needs refactoring the
+examples to an automated testsuite first)
 
 
 ARBINT, basic INTEGER type.
 ARBINT, basic INTEGER type.
 -----------------------------------
 -----------------------------------
@@ -67,6 +69,14 @@ VAR L : ARRAY[0..1999] OF ArbFloat;
 
 
 DoSomething(L[0]);
 DoSomething(L[0]);
 
 
+Documentation
+-------------
+
+Needs fpc.sty and fakehtml.sty from FPC documentation source to build.
+
+For now in latex (due to math formulas etc), and file per unit, later then
+can be combined in one hyperrefed pkg
+
 -----------
 -----------
 Questions that remain open/incompleteneses in the package we got:
 Questions that remain open/incompleteneses in the package we got:
 
 
@@ -95,4 +105,4 @@ Other remarks:
 - Found out what MDT does. MDT is the core of DET. Det just reads a vector,
 - Found out what MDT does. MDT is the core of DET. Det just reads a vector,
     reformats it to form a matrix, and then passes it to MDT.
     reformats it to form a matrix, and then passes it to MDT.
   Such a vector only contains the required fields to build a certain kind of
   Such a vector only contains the required fields to build a certain kind of
-  matrix. (e.g. for a band matrix, the diagonals). MDT=Matrix determinant.
+  matrix. (e.g. for a band matrix, the diagonals). MDT=Matrix determinant.