git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| using System; | |
| using System.Text; | |
| using Eluant; | |
| class Example { | |
| static void Main() { | |
| using (var runtime = new LuaRuntime()) { | |
| using (var proxy = runtime.CreateFunctionFromDelegate(new Action<LuaTable>(PrintProxy))) { | |
| runtime.Globals["printproxy"] = proxy; | |
| } |
| // Implemented the `Linear Programming Simplex Method VI` of LabVIEW in C# | |
| namespace Mathematics | |
| { | |
| public static class Optimization | |
| { | |
| /// <summary> | |
| /// Determines the solution of a linear programming problem: Maximize C∙x, subject to M∙x >= b and x >= 0 | |
| /// </summary> | |
| /// <param name="objective">C, a array describing the linear functional to maximize.</param> |
To create a Table
create table risk_clos_rank(
id_num int IDENTITY(1,1) NOT NULL,
username nvarchar(100),
datetime_of_decision DATETIME
);
CREATE TABLE TheNameOfYourTable (
ID INT NOT NULL IDENTITY(1,1),