亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? toinitalltasks.java

?? MPI for java for Distributed Programming
?? JAVA
字號:
/***************************************************************************                                                                         **             Java Grande Forum Benchmark Suite - MPJ Version 1.0         **                                                                         **                            produced by                                  **                                                                         **                  Java Grande Benchmarking Project                       **                                                                         **                                at                                       **                                                                         **                Edinburgh Parallel Computing Centre                      **                                                                         **                email: epcc-javagrande@epcc.ed.ac.uk                     **                                                                         **      Original version of this code by Hon Yau (hwyau@epcc.ed.ac.uk)     **                                                                         **      This version copyright (c) The University of Edinburgh, 2001.      **                         All rights reserved.                            **                                                                         ***************************************************************************/package jgf_mpj_benchmarks.section3.montecarlo;//package montecarlo;/**  * Class for defining the initialisation data for all tasks.  *  * @author H W Yau  * @version $Revision: 1.1 $ $Date: 2005/04/29 17:43:42 $  */public class ToInitAllTasks implements java.io.Serializable {  private String header;  private String name;  private int startDate;  private int endDate;  private double dTime;  private int returnDefinition;  private double expectedReturnRate;  private double volatility;  private int nTimeSteps;  private double pathStartValue;  /**    * Constructor, for initialisation data which are common to all    * computation tasks.    *    * @param header Simple header string.    * @param name The name of the security which this Monte Carlo path    *             should represent.    * @param startDate The date when the path starts, in 'YYYYMMDD' format.    * @param endDate The date when the path ends, in 'YYYYMMDD' format.    * @param dTime The interval in the data between successive data points    *              in the generated path.    * @param returnDefinition How the statistic variables were defined,    *                         according to the definitions in    *                         <code>ReturnPath</code>'s two class variables    *                         <code>COMPOUNDED</code> and    *                         <code>NONCOMPOUNDED</code>.    * @param expectedReturnRate The measured expected return rate for which    *       to generate.    * @param volatility The measured volatility for which to generate.    * @param nTimeSteps The number of time steps for which to generate.    * @param pathStartValue The stock price value to use at the start of each    *        Monte Carlo simulation path.    */  public ToInitAllTasks(String header, String name, int startDate, int endDate,   double dTime, int returnDefinition, double expectedReturnRate, double volatility,   double pathStartValue) {    this.header             = header;    this.name               = name;    this.startDate          = startDate;    this.endDate            = endDate;    this.dTime              = dTime;    this.returnDefinition   = returnDefinition;    this.expectedReturnRate = expectedReturnRate;    this.volatility         = volatility;    this.nTimeSteps         = nTimeSteps;    this.pathStartValue     = pathStartValue;  }  /**    * Another constructor, slightly easier to use by having slightly    * fewer arguments.  Makes use of the "ReturnPath" object to    * accomplish this.    *    * @param obj Object used to define the instance variables which    *            should be carried over to this object.    * @param nTimeSteps The number of time steps which the Monte    *                   Carlo generator should make.    * @param pathStartValue The stock price value to use at the start of each    *        Monte Carlo simulation path.    * @exception DemoException thrown if there is a problem accessing the    *                          instance variables from the target objetct.    */  public ToInitAllTasks(ReturnPath obj, int nTimeSteps, double pathStartValue)   throws DemoException {    //    // Instance variables defined in the PathId object.    this.name      = obj.get_name();    this.startDate = obj.get_startDate();    this.endDate   = obj.get_endDate();    this.dTime     = obj.get_dTime();    //    // Instance variables defined in ReturnPath object.    this.returnDefinition   = obj.get_returnDefinition();    this.expectedReturnRate = obj.get_expectedReturnRate();    this.volatility         = obj.get_volatility();    this.nTimeSteps         = nTimeSteps;    this.pathStartValue     = pathStartValue;  }  //------------------------------------------------------------------------  // Accessor methods for class ToInitAllTasks.  // Generated by 'makeJavaAccessor.pl' script.  HWY.  20th January 1999.  //------------------------------------------------------------------------  /**    * Accessor method for private instance variable <code>header</code>.    *    * @return Value of instance variable <code>header</code>.    */  public String get_header() {    return(this.header);  }  /**    * Set method for private instance variable <code>header</code>.    *    * @param header the value to set for the instance variable <code>header</code>.    */  public void set_header(String header) {    this.header = header;  }  /**    * Accessor method for private instance variable <code>name</code>.    *    * @return Value of instance variable <code>name</code>.    */  public String get_name() {    return(this.name);  }  /**    * Set method for private instance variable <code>name</code>.    *    * @param name the value to set for the instance variable <code>name</code>.    */  public void set_name(String name) {    this.name = name;  }  /**    * Accessor method for private instance variable <code>startDate</code>.    *    * @return Value of instance variable <code>startDate</code>.    */  public int get_startDate() {    return(this.startDate);  }  /**    * Set method for private instance variable <code>startDate</code>.    *    * @param startDate the value to set for the instance variable <code>startDate</code>.    */  public void set_startDate(int startDate) {    this.startDate = startDate;  }  /**    * Accessor method for private instance variable <code>endDate</code>.    *    * @return Value of instance variable <code>endDate</code>.    */  public int get_endDate() {    return(this.endDate);  }  /**    * Set method for private instance variable <code>endDate</code>.    *    * @param endDate the value to set for the instance variable <code>endDate</code>.    */  public void set_endDate(int endDate) {    this.endDate = endDate;  }  /**    * Accessor method for private instance variable <code>dTime</code>.    *    * @return Value of instance variable <code>dTime</code>.    */  public double get_dTime() {    return(this.dTime);  }  /**    * Set method for private instance variable <code>dTime</code>.    *    * @param dTime the value to set for the instance variable <code>dTime</code>.    */  public void set_dTime(double dTime) {    this.dTime = dTime;  }  /**    * Accessor method for private instance variable <code>returnDefinition</code>.    *    * @return Value of instance variable <code>returnDefinition</code>.    */  public int get_returnDefinition() {    return(this.returnDefinition);  }  /**    * Set method for private instance variable <code>returnDefinition</code>.    *    * @param returnDefinition the value to set for the instance variable <code>returnDefinition</code>.    */  public void set_returnDefinition(int returnDefinition) {    this.returnDefinition = returnDefinition;  }  /**    * Accessor method for private instance variable <code>expectedReturnRate</code>.    *    * @return Value of instance variable <code>expectedReturnRate</code>.    */  public double get_expectedReturnRate() {    return(this.expectedReturnRate);  }  /**    * Set method for private instance variable <code>expectedReturnRate</code>.    *    * @param expectedReturnRate the value to set for the instance variable <code>expectedReturnRate</code>.    */  public void set_expectedReturnRate(double expectedReturnRate) {    this.expectedReturnRate = expectedReturnRate;  }  /**    * Accessor method for private instance variable <code>volatility</code>.    *    * @return Value of instance variable <code>volatility</code>.    */  public double get_volatility() {    return(this.volatility);  }  /**    * Set method for private instance variable <code>volatility</code>.    *    * @param volatility the value to set for the instance variable <code>volatility</code>.    */  public void set_volatility(double volatility) {    this.volatility = volatility;  }  /**    * Accessor method for private instance variable <code>nTimeSteps</code>.    *    * @return Value of instance variable <code>nTimeSteps</code>.    */  public int get_nTimeSteps() {    return(this.nTimeSteps);  }  /**    * Set method for private instance variable <code>nTimeSteps</code>.    *    * @param nTimeSteps the value to set for the instance variable <code>nTimeSteps</code>.    */  public void set_nTimeSteps(int nTimeSteps) {    this.nTimeSteps = nTimeSteps;  }  /**    * Accessor method for private instance variable <code>pathStartValue</code>.    *    * @return Value of instance variable <code>pathStartValue</code>.    */  public double get_pathStartValue() {    return(this.pathStartValue);  }  /**    * Set method for private instance variable <code>pathStartValue</code>.    *    * @param pathStartValue the value to set for the instance variable <code>pathStartValue</code>.    */  public void set_pathStartValue(double pathStartValue) {    this.pathStartValue = pathStartValue;  }  //------------------------------------------------------------------------}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩dvd在线观看| 欧美无人高清视频在线观看| 美腿丝袜一区二区三区| 亚欧色一区w666天堂| 亚洲国产综合91精品麻豆| 亚洲午夜久久久久久久久电影院| 国产精品乱码久久久久久 | 亚洲精品日韩一| 亚洲乱码国产乱码精品精小说| 国产精品青草久久| 亚洲欧美二区三区| 亚洲观看高清完整版在线观看| 亚洲午夜激情网站| 奇米在线7777在线精品| 激情图区综合网| 国产麻豆午夜三级精品| 成人免费高清在线| 精品视频一区二区不卡| 欧美一区二区女人| 久久精品日韩一区二区三区| 综合激情成人伊人| 午夜精品一区二区三区电影天堂| 麻豆国产91在线播放| 成人性视频免费网站| 91成人免费在线视频| 欧美一区二区视频观看视频| 国产日韩欧美一区二区三区乱码| 国产精品国产自产拍在线| 亚洲电影一级黄| 国产不卡视频在线播放| 在线观看一区不卡| 久久久久久久久久电影| 亚洲小少妇裸体bbw| 国产美女久久久久| 欧美精选一区二区| 中文字幕一区在线| 韩国成人精品a∨在线观看| 一本大道av一区二区在线播放 | 欧美日韩国产高清一区| 精品粉嫩aⅴ一区二区三区四区| 中文字幕第一区第二区| 调教+趴+乳夹+国产+精品| 国产成人aaa| 日韩三级视频在线观看| 一区二区激情视频| 成人免费高清在线观看| 日韩精品自拍偷拍| 香蕉加勒比综合久久| 成人黄色小视频| 精品国产乱码久久久久久免费| 国产精品国产三级国产aⅴ无密码| 天涯成人国产亚洲精品一区av| 成人av综合在线| 精品国产一区二区三区不卡 | 麻豆免费看一区二区三区| aaa国产一区| 久久精品夜色噜噜亚洲a∨| 午夜久久电影网| 91久久精品一区二区三区| 欧美极品另类videosde| 国模无码大尺度一区二区三区| 欧美日韩精品一区二区在线播放| 亚洲欧洲美洲综合色网| 成人app在线观看| 欧美国产一区视频在线观看| 精东粉嫩av免费一区二区三区| 欧美日韩在线三区| 亚洲午夜精品在线| 精品视频资源站| 亚洲成av人片在www色猫咪| 在线日韩国产精品| 亚洲国产wwwccc36天堂| 欧美视频在线观看一区| 亚洲综合色视频| 欧美性生交片4| 亚洲国产成人av网| 9191成人精品久久| 日本视频一区二区三区| 69堂国产成人免费视频| 麻豆一区二区三区| 欧美xxxx老人做受| 国产高清精品久久久久| 中文字幕精品—区二区四季| 成人午夜视频在线| 1024国产精品| 欧美最新大片在线看| 偷拍与自拍一区| 日韩视频免费观看高清完整版 | 久久精品国产99国产精品| 欧美变态tickling挠脚心| 精品一区二区三区久久| 国产偷v国产偷v亚洲高清| 国产98色在线|日韩| 国产精品国产三级国产普通话99| 成人app软件下载大全免费| 一区二区三区丝袜| 欧美一区二区播放| 国产麻豆成人精品| 亚洲色图欧洲色图婷婷| 777色狠狠一区二区三区| 国内精品伊人久久久久av一坑| 久久综合九色综合97婷婷| 成人av网址在线| 亚洲一二三区不卡| 精品久久久影院| 色偷偷久久一区二区三区| 日韩精品成人一区二区三区| 精品国产91洋老外米糕| 91视频在线看| 美腿丝袜一区二区三区| 亚洲视频一区二区免费在线观看| 欧美另类一区二区三区| 丁香六月久久综合狠狠色| 无码av中文一区二区三区桃花岛| 欧美精品一区二区三区高清aⅴ | 91麻豆精品国产| 成人av电影在线网| 久久99深爱久久99精品| 一区二区久久久| 中文在线资源观看网站视频免费不卡 | 色婷婷久久久亚洲一区二区三区| 日本欧美一区二区| 亚洲精品高清视频在线观看| 久久美女高清视频| 欧美一区二区三区影视| 91丨porny丨户外露出| 国产一区福利在线| 日本最新不卡在线| 亚洲一区二区在线视频| 国产精品天美传媒| 久久久一区二区| 日韩欧美国产午夜精品| 欧美日韩大陆在线| 97久久精品人人做人人爽50路| 精品一区二区三区视频在线观看 | 麻豆视频观看网址久久| 亚洲综合激情另类小说区| 国产精品久久午夜| 精品国产91九色蝌蚪| 欧美一区日韩一区| 91麻豆精品国产91久久久 | 欧美日韩黄色一区二区| 91福利视频在线| 色丁香久综合在线久综合在线观看| 国产在线视视频有精品| 久久国内精品视频| 美日韩一区二区三区| 精品一二三四区| 国产最新精品精品你懂的| 麻豆成人av在线| 久久精品国产色蜜蜜麻豆| 日本不卡一区二区三区高清视频| 亚洲成av人片在www色猫咪| 亚洲韩国精品一区| 日韩成人伦理电影在线观看| 亚洲地区一二三色| 偷拍亚洲欧洲综合| 麻豆精品在线视频| 国产精品一区在线观看你懂的| 国产综合色在线视频区| 岛国精品一区二区| 91亚洲资源网| 欧美区在线观看| 日韩精品中文字幕一区| 久久精品欧美一区二区三区麻豆| 国产亚洲精久久久久久| 亚洲日本一区二区| 亚洲成av人片在线观看无码| 美腿丝袜在线亚洲一区| 国产91综合网| 在线一区二区观看| 欧美大度的电影原声| 国产精品久久久久久久裸模| 一区二区三区在线免费| 麻豆成人免费电影| www..com久久爱| 欧美日本一道本| 久久久久成人黄色影片| 又紧又大又爽精品一区二区| 日韩1区2区日韩1区2区| 国产成人亚洲综合a∨婷婷| 91免费视频网址| 日韩欧美国产成人一区二区| 国产精品天干天干在线综合| 亚洲va欧美va人人爽午夜| 精品一区二区综合| 日本韩国一区二区| 久久一日本道色综合| 亚洲精品免费在线观看| 国内久久精品视频| 在线观看日韩国产| 欧美激情一区二区三区全黄| 亚洲第一电影网| 成人av免费在线播放| 日韩欧美综合一区| 亚洲一区免费观看| 成人av电影在线| 久久综合中文字幕| 午夜精品一区二区三区电影天堂| 成人午夜电影小说|