Changes between Version 13 and Version 14 of List of examples
- Timestamp:
- 04/05/13 10:54:35 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
List of examples
v13 v14 1 The examples on this page are all specified in the CxA files in the {{{src/cxa}}} directory of the MUSCLE source package. The implementation of the submodels is in different locations,based on the language used.1 The examples on this page are all specified in the CxA files in the {{{src/cxa}}} directory of the MUSCLE source package. The implementation of the submodels is spread out over different directories based on the language used. 2 2 3 3 == Java examples == … … 40 40 == Fortran example == 41 41 42 The code for the Fortran example is contained in {{{src/fortran/examples}}}. 43 42 44 Simple Fortran:: 43 45 An example Fortran implementation of the writer submodel explained in the Simple Example for Java. The boilerplate code needed to communicate with the C library is included. 44 46 45 47 == Scala example == 48 The code for the Scala example is contained in {{{src/scala/examples}}}. 49 46 50 Simple Scala:: 47 51 An example Scala implementation of the writer submodel explained in the Simple Example for Java. Note that for it to work, you compile the code with the {{{scalac}}} compiler, and the Scala runtime library must be included in the Java classpath during runtime.