source: java/main/src/main/java/com/framsticks/experiment/SimulatorSpecification.java @ 107

Last change on this file since 107 was 107, checked in by psniegowski, 11 years ago

HIGHLIGHTS:

  • add SimultorProviders? hierarchy
  • start Framsticks server over SSH
  • FJF compatible with Framsticks 4.0rc3
  • reading and writing of standard.expt
  • a proof-of-concept implementation of StandardExperiment?

CHANGELOG:
Optionally return FreeAccess? from registry.

Add SimulatorRange?.

StandardExperiment? with genotypes circulation.

Automate registration around StandardState?.

More improvements to StandardExperiment?.

Skeleton version of StandardExperiment?.

Test saving of StandardState?.

Standard experiment state is being loaded.

More development towards StandardState? reading.

Work on reading standard experiment state.

Add classes for standard experiment.

Update example standard.expt

Add FreeAccess? and FreeObject?.

Made compatible with version 4.0rc3

Change deserialization policy.

Improve SSH support.

Working running simulator over SSH.

Fix joining bug in Experiment.

Working version of SimulatorRunner?.

Add more SimulatorProviders?.

Working PrimeExperimentTest? with 4.0rc3

Add references to deserialization.

Add OpaqueObject? and it's serialization.

Add deserialization of dictionaries.

Partial implementation of deserialization.

Add more tests for deserialization.

Prepare tests for deserialization.

Add proper result to prime experiment test.

Minor fixes to simulators providers.

Draft version of SimulatorProvider?.

Add SimulatorProvider? interface.

File size: 545 bytes
Line 
1package com.framsticks.experiment;
2
3public class SimulatorSpecification {
4
5        protected final Experiment experiment;
6        protected final String definition;
7
8        /**
9         * @param experiment
10         * @param definition
11         */
12        public SimulatorSpecification(Experiment experiment, String definition) {
13                this.experiment = experiment;
14                this.definition = definition;
15        }
16
17        /**
18         * @return the experiment
19         */
20        public Experiment getExperiment() {
21                return experiment;
22        }
23
24        /**
25         * @return the definition
26         */
27        public String getDefinition() {
28                return definition;
29        }
30
31}
Note: See TracBrowser for help on using the repository browser.