VasCalc - Progress Log

From Drorbn
Revision as of 22:24, 20 May 2006 by Sankaran (Talk | contribs)

Jump to: navigation, search

This is the VasCalc Project Progress Log.

Contents

Saturday May 20 2006

Our first task is to write a program to construct and manipulate the (formal) quotient vector space A(m,n,l), consisting of diagrams with m chords between n lines and l circles, modulo the four-T relations. Here's a rough sketch of the structure of this program:

Dmod4T.jpg


Java things are in orange, Mathematica things are in blue. Red arrows are helper functions that need to be written, and black arrows denote "natural class heirarchy".

Monday May 15 2006

Another slightly different HelloWorld test has been added to the SVN repository. This time, one can use the default Java runtime bundled with Mathematica/Windows (so the user does not need to know anything about where Java lives on their system) by telling the Java compiler to produce code for Java 1.4. This is accomplished by issuing the command:

javac -source 1.4 -target 1.4 file_to_be_compiled.java

I suppose this prevents us from using the new features of Java 1.5, but I don't know what they are.

As for the test program, download javatest.m and test1.class, and issue the following commands in Mathematica (replacing the '/path_to_files' with the location you downloaded the files to, and don't forget the quotes in the second line):

<< /path_to_files/javatest.m
HelloWorld[VasCalcPath -> "/path_to_files"]

and read your mystery message!

Sunday May 14 2006

J/Link passed the Hello World test. The java class and Mathematica notebook were commited to the repository trunk. Note the Mathematica file must be edited in order to specify the path to java and the class. In order to get it to work I had to tweak a few things:

  • The JRE bin directory had to be added to the PATH. The JDK path is not enough because J/Link looks for files like jawt.dll and awt.dll that don't come with JDK.
  • HelloWorld.class had to be in one of the dirs in CLASSPATH, because J/Link loads classes only through their full class name.
  • In Mathematica, when running InstallJava[], it was necessary to specify the path name for a newer version of java.exe. By default it runs the Windows java, which didn't run what was compiled with a new JDK.

Ideally, one would like to write a Mathematica notebook without any hardcoded paths that others can use with no changes. Is this possible?

Thursday May 11 20006

  • First day meeting's blackboard:
    060511-1.jpg