05 2011 档案
cplex
摘要:using ILOG.Concert;using ILOG.CPLEX;using System;public class Rand { public int[] iResult = new int[1000]; public void random_int(int iDown, int iUp , int number) { Random ro = new Random(); for (int ... 阅读全文
posted @ 2011-05-17 08:57 Elitez 阅读(1300) 评论(0) 推荐(0)
C#计算程序的运行时间
摘要:/// <summary>/// 计算程序的运行时间/// </summary>class StopWatch{ private int mintStart; public void start() { mintStart = Environment.TickCount; } public long elapsed() { return Environment.TickCount - mintS... 阅读全文
posted @ 2011-05-11 14:53 Elitez 阅读(1290) 评论(0) 推荐(0)