Example #1
0
 public GradientProjectionMethod(Polygon[] pol, SemiinfiniteStrip s, double h, double w)
 {
     this.polygons = pol;
     this.st = s;
     this.height = h;
     this.width = w;
 }
Example #2
0
File: Form1.cs Project: Ring-r/opt
        public Form1()
        {
            InitializeComponent();

            iterator = 0;

            double[] A = ReadStrip();
            st = new SemiinfiniteStrip(A[0], A[1], (int)A[2]);

        }