source: java/ecj/framsticks/framsticks.slave.params @ 44

Last change on this file since 44 was 44, checked in by mszubert, 14 years ago

cecj, framsticks and games packages imported

File size: 1.1 KB
Line 
1# Copyright 2006 by Sean Luke and George Mason University
2# Licensed under the Academic Free License version 3.0
3# See the file "LICENSE" for more information
4
5parent.0 = framsticks.master.params
6
7# We tell our slave that he's a slave.
8eval.i-am-slave = true
9
10
11# You may want to customize each slave by giving it a unique
12# name like this:
13#
14# eval.slave-name = my-slave-name
15#
16# (do this differently for each slave:, slave-2, slave-3, etc.)
17# Otherwise, each slave will give itself an approximately unique name based
18# on the current time and the IP address of the slave.  The unique name
19# doesn't HAVE to be unique -- it's just for printing/debug purposes.
20
21
22# We want to make sure that the Slave's Statistics object does not
23# override the Master's statistics files.  The easiest way to do this
24# is to eliminate the Statistics object in the slave by setting it
25# to the (empty default) Statistics class with no children.
26
27eval.stat = ec.Statistics
28eval.stat.num-children = 0
29
30
31# The slave needs to know where the Master is.  You need to
32# change this.
33eval.master.host = 127.0.0.1
Note: See TracBrowser for help on using the repository browser.