TreeAge Pro Interactive


MonteParams.serverList
v1.0
MonteParams - Object Overview
TreeAge Pro Interactive - Table of Contents

TreeAge Pro - Table of Contents

Documentation Home
TreeAge Website Home
  
Property type: serverList as String
Access: Write-only
Description:  Sets the names of the servers to use for a distributed Monte Carlo simulation. A server name can be 'localhost', the name of the computer, or its IP address.
Remarks:  Here is a snippet of VB code:
Dim mcParams as New MonteParams
Dim mcOut as New MonteOutput
Dim servers(2) as String
server(0) = "localhost"
server(1) = "pcFive"
server(2) = "192.168.234.10"
mcParams.serverList = servers
mcParams.samples = 0
mcParams.trials = 1000
Set mcOut = gTree.MonteCarlo(mcParams)
debug.print "local outputs: " & gTree.NumOutputsFromServer(server(0))