• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

ginac/H24-Jan-2021-48,49132,265

m4/H24-Jan-2021-1,3921,138

.gitignoreH A D24-Jan-2021446 3736

AUTHORSH A D24-Jan-20211.3 KiB5041

CONTRIBUTING.mdH A D24-Jan-20214.9 KiB8368

COPYINGH A D24-Jan-202117.7 KiB342283

ChangeLogH A D24-Jan-2021368 76

INSTALLH A D24-Jan-202115.4 KiB369287

Makefile.amH A D24-Jan-2021563 2211

NEWSH A D24-Jan-202131.8 KiB691619

PACKAGING.mdH A D24-Jan-2021787 63

READMEH A D24-Jan-20212.1 KiB7346

acinclude.m4H A D24-Jan-20214.9 KiB135127

bootstrapH A D24-Jan-2021128 126

compile_commands.jsonH A D24-Jan-202127.8 KiB263262

configure.acH A D24-Jan-20218.2 KiB229196

pynac.pc.inH A D24-Jan-2021302 1311

pynac.spec.inH A D24-Jan-20213.5 KiB131100

README

1Pynac -- "Python is Not a CAS" is a modified version of Ginac that
2replaces the dependency of GiNaC on CLN by a dependency instead of Python.
3It is a lite version of GiNaC as well, not implementing all the features
4of the full GiNaC, and it is *only* meant to be used as a Python library.
5
6 -- William Stein
7
8
9
10ORIGINAL README
11
12General Information
13===================
14
15GiNaC (which stands for "GiNaC is Not a CAS" (computer algebra system)) is a
16C++ library for symbolic mathematical calculations.  It is designed to allow
17the creation of integrated systems that embed symbolic manipulations together
18with more established areas of computer science (like computation-intense
19numeric applications, graphical interfaces, etc.) under one roof.
20
21The official ftp site is:
22  ftp://ftpthep.physik.uni-mainz.de/pub/GiNaC/
23
24The official web site is:
25  http://www.ginac.de/
26
27A mailing list is located at:
28  ginac-list@ginac.de
29
30You need to be subscribed to be able to post to the list. To subscribe,
31please follow the instructions on
32  https://www.cebix.net/mailman/listinfo/ginac-list
33
34See http://www.ginac.de/Lists.html for the list policy.
35
36
37Installation
38============
39
40See the file "INSTALL".
41
42
43How to report bugs
44==================
45
46If you have identified a bug in GiNaC you are welcome to send a detailed
47bug report to <ginac-list@ginac.de>.  Please think about your bug!  This
48means that you should include
49
50* Information about your system
51
52   - Which operating system and version (uname -a)
53   - Which C compiler and version (gcc --version)
54   - For Linux, which version of the C library
55
56  And anything else you think is relevant.
57
58* Information about your version of GiNaC
59
60   - Version and release number
61   - Which options GiNaC was configured with
62
63* How to reproduce the bug
64
65   - If it is a systematical bug in the library, a short test program
66     together with the output you get and the output you expect will
67     help us to reproduce it quickly.
68
69Patches are most welcome.  If possible please make them with diff -c and
70include ChangeLog entries.
71
72Join the chat at https://gitter.im/pynac/pynac
73