You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdeedu/kalzium/src/solver
toma ce599e4f9f
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
15 years ago
..
Makefile Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
README Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
calc.ml Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
calc.mli Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
chem.ml Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
chem.mli Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
chemset.ml Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
chemset.mli Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
datastruct.ml Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
datastruct.mli Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
lexer.ml Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
lexer.mll Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
main.c Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
main.ml Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
modwrap.c Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
parser.ml Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
parser.mli Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
parser.mly Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago

README

You will need a working objective caml installation and 
the FaCiLe library properly configured and installed
to compile eqchem.

In practice, one would only run make in this directory (src/solver)
"make"
"make clean", etc

To assemble with a c++ or a kde program, the object files 
solver.o and modwrap.o must be added and linked with :
-L/usr/lib/ocaml -L/usr/lib/ocaml/facile -lasmrun -lstr -lnums -lm -ldl solver.o modwrap.o

The program built can then be run without the objective caml tools.

Console examples can also be generated (try "make test")


Thomas Nagy