Skip to content

wagh/Sources

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rules for inlude files:
- include files from the current subdir via #include "abc.h"
- include header from other subdirs vai #include <def.h>
  ( do NOT use a specific path - this may change!)
- include privtae header files via path: #include "../other_dir/ppp.h"
  - should be avoided!

Classes of files
- public header:
  - should be installed at a central place ($includedir)
  - should itself only include other public headers
- private header: 
  - will not be installed at other places
  - will (usually) only be included from that subdir

About

sources for the Singular computer algebra system

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 40.3%
  • Scilab 35.7%
  • C 19.9%
  • Java 1.9%
  • Emacs Lisp 1.0%
  • Python 0.5%
  • Other 0.7%