├── .gitattributes ├── .gitignore ├── AllProjects.sln ├── Capture ├── Capture.csproj ├── Capture.csproj.user ├── CaptureComponent.cs ├── CaptureComponentAttributes.cs ├── CaptureInfo.cs ├── CaptureUtilities.cs ├── Diversity.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── Capture1.png ├── app.config └── packages.config ├── Cluster ├── Cluster.cs ├── Cluster.csproj ├── ClusterComponentAttributes.cs ├── ClusterInfo.cs ├── MyComponent1.cs ├── MyProject1Info.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── cluster1.png ├── app.config └── packages.config ├── Contort ├── Contort.csproj ├── ContortComponent.cs ├── ContortInfo.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── Contort1.png ├── app.config └── packages.config ├── DSE Build 1.5.zip ├── DSECommon ├── ConsoleTest │ ├── App.config │ ├── DSECommonTest.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── DSECommon.csproj ├── DSEVariable.CS ├── GHUtilities.cs ├── MathUtilities.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── DSOpt ├── DSOpt.csproj ├── DSOptimization │ ├── DSOptimizerComponent.cs │ ├── Design.cs │ ├── IOptimizeToolVM.cs │ ├── Model │ │ ├── Constraint.cs │ │ ├── CurveVariable.cs │ │ ├── DesignCurve.cs │ │ ├── DesignSurface.cs │ │ ├── GeoVariable.cs │ │ ├── IDesignGeometry.cs │ │ ├── IVariable.cs │ │ ├── SliderVariable.cs │ │ └── SurfaceVariable.cs │ ├── View │ │ ├── BaseControl.cs │ │ ├── ConstraintControl.xaml │ │ ├── ConstraintControl.xaml.cs │ │ ├── DSOptimizeWindow.xaml │ │ ├── DSOptimizeWindow.xaml.cs │ │ ├── GroupVariableControl.xaml │ │ ├── GroupVariableControl.xaml.cs │ │ ├── VariableControl.xaml │ │ ├── VariableControl.xaml.cs │ │ ├── VariableHeaderControl.xaml │ │ └── VariableHeaderControl.xaml.cs │ └── ViewModel │ │ ├── BaseVM.cs │ │ ├── ConstVM.cs │ │ ├── GroupVarVM.cs │ │ ├── IStepDataElement.cs │ │ ├── IViewModel.cs │ │ └── VarVM.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── RadicalFolder │ ├── Components │ │ ├── IExplorationComponent.cs │ │ └── IOptimizationComponent.cs │ ├── DSModel │ │ ├── Constraint.cs │ │ ├── CurveVariable.cs │ │ ├── DesignCurve.cs │ │ ├── DesignSurface.cs │ │ ├── GeoVariable.cs │ │ ├── IDesignGeometry.cs │ │ ├── IVariable.cs │ │ ├── SliderVariable.cs │ │ └── SurfaceVariable.cs │ ├── DSOptInfo.cs │ ├── DSView │ │ ├── BaseControl.cs │ │ ├── ConstraintControl.xaml │ │ ├── ConstraintControl.xaml.cs │ │ ├── DSOptimizeWindow.xaml │ │ ├── DSOptimizeWindow.xaml.cs │ │ ├── GroupVariableControl.xaml │ │ ├── GroupVariableControl.xaml.cs │ │ ├── VariableControl.xaml │ │ ├── VariableControl.xaml.cs │ │ ├── VariableHeaderControl.xaml │ │ └── VariableHeaderControl.xaml.cs │ ├── DSViewModel │ │ ├── BaseVM.cs │ │ ├── ConstVM.cs │ │ ├── GroupVarVM.cs │ │ ├── IStepDataElement.cs │ │ ├── IViewModel.cs │ │ └── VarVM.cs │ ├── Integration │ │ ├── Design.cs │ │ └── IDesign.cs │ ├── Model │ │ ├── RadicalOptimizer.cs │ │ ├── Sampler.cs │ │ └── csvWriter.cs │ ├── View │ │ ├── GraphControl.xaml │ │ ├── GraphControl.xaml.cs │ │ ├── RadicalSettingsControl.xaml │ │ ├── RadicalSettingsControl.xaml.cs │ │ ├── RadicalWindow.xaml │ │ ├── RadicalWindow.xaml.cs │ │ └── packages.config │ └── ViewModel │ │ ├── GraphVM.cs │ │ └── RadicalVM.cs ├── Resources │ ├── DSOpt.png │ └── DSOpt2.png ├── StepperFolder │ ├── Model │ │ ├── StepperInfo.cs │ │ └── StepperOptimizer.cs │ ├── View │ │ ├── DataControl.xaml │ │ ├── DataControl.xaml.cs │ │ ├── SettingsControl.xaml │ │ ├── SettingsControl.xaml.cs │ │ ├── StepperGraphControl.xaml │ │ ├── StepperGraphControl.xaml.cs │ │ ├── StepperWindow.xaml │ │ └── StepperWindow.xaml.cs │ ├── ViewModel │ │ ├── ObjectiveVM.cs │ │ ├── StepperGraphVM.cs │ │ └── StepperVM.cs │ └── x32 │ │ ├── COPYING │ │ ├── COPYRIGHT │ │ ├── libnlopt-0.def │ │ ├── libnlopt-0.dll │ │ └── nlopt.h ├── app.config └── packages.config ├── DesignLogger ├── DesignLogger.csproj ├── DesignLoggerComponent.cs ├── DesignLoggerInfo.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── Logger.png └── packages.config ├── DesignTool ├── Analysis │ ├── BaseTrussAnalysis.cs │ ├── BraninTestFunction.cs │ ├── EquivFrameAnalysis.cs │ ├── GraphicStatics │ │ ├── ForcePolygon.cs │ │ ├── FormDiagram.cs │ │ ├── PointLoad.cs │ │ └── ProblemSetup.cs │ ├── IAnalysis.cs │ ├── RegAnalysis.cs │ ├── Results.cs │ ├── TrussAnalysis.cs │ └── TrussDispAnalysis.cs ├── Assets │ └── FIT Files │ │ ├── MichellTruss2Panel.fit │ │ ├── MichellTruss2PanelMetric-FINAL.fit │ │ ├── MichellTruss2PanelMetric.fit │ │ └── MichellTruss2PanelMetric2.fit ├── ClassDiagram1.cd ├── EvoConsole │ ├── EvoConsole.csproj │ ├── EvoConsole.sln │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── Evolutionary │ ├── DiversityBooster.cs │ ├── EvoParams.cs │ ├── GramDivBooster.cs │ ├── IDivBooster.cs │ ├── ParDivBooster.cs │ └── PopulationGenerator.cs ├── Grammar │ ├── Airport │ │ ├── AirportAnalysis.cs │ │ ├── AirportGrammar.cs │ │ ├── AirportShape.cs │ │ ├── AirportShapeState.cs │ │ └── Rules │ │ │ ├── Rule001.cs │ │ │ ├── Rule002.cs │ │ │ ├── Rule003.cs │ │ │ ├── Rule004.cs │ │ │ ├── Rule005.cs │ │ │ └── RuleA.cs │ ├── BaseGrammar.cs │ ├── BaseRule.cs │ ├── BaseShape.cs │ ├── Bridge │ │ ├── BridgeAnalysis.cs │ │ ├── BridgeGrammar.cs │ │ ├── BridgeShape.cs │ │ ├── BridgeShapeState.cs │ │ └── Rules │ │ │ ├── Rule001.cs │ │ │ ├── Rule002.cs │ │ │ ├── Rule003.cs │ │ │ ├── Rule004.cs │ │ │ ├── Rule005.cs │ │ │ ├── Rule006.cs │ │ │ ├── Rule007.cs │ │ │ ├── Rule008.cs │ │ │ ├── Rule009.cs │ │ │ ├── Rule010.cs │ │ │ ├── Rule011.cs │ │ │ ├── Rule012.cs │ │ │ ├── Rule013.cs │ │ │ ├── Rule014.cs │ │ │ ├── Rule015.cs │ │ │ ├── Rule016.cs │ │ │ ├── Rule017.cs │ │ │ ├── RuleA.cs │ │ │ ├── RuleB.cs │ │ │ ├── RuleC.cs │ │ │ └── RuleD.cs │ ├── DoubleParameter.cs │ ├── ElementGroup.cs │ ├── EnumParameter.cs │ ├── GrammarSetup.cs │ ├── IElement.cs │ ├── IElementGroup.cs │ ├── IGrammar.cs │ ├── IGrammarAnalysis.cs │ ├── IRule.cs │ ├── IRuleParameter.cs │ ├── IShape.cs │ ├── IShapeState.cs │ ├── IntParameter.cs │ ├── RandomComputation.cs │ ├── RuleSet.cs │ ├── ShapeArea.cs │ ├── ShapeComputation.cs │ ├── ShapeHistory.cs │ ├── ShapeLine.cs │ ├── ShapePoint.cs │ ├── ShapePointLoad.cs │ └── Simple │ │ ├── Rules │ │ ├── Rule001.cs │ │ ├── Rule002.cs │ │ ├── Rule003.cs │ │ └── RuleA.cs │ │ ├── SimpleAnalysis.cs │ │ ├── SimpleGrammar.cs │ │ ├── SimpleShape.cs │ │ └── SimpleShapeState.cs ├── Logging │ ├── Generation.cs │ ├── HttpWebRequestBuilder.cs │ ├── LoadCaseSerializer.cs │ ├── MemberSerializer.cs │ ├── NodeSerializer.cs │ ├── Session.cs │ └── StructureSerializer.cs ├── MachineLearning │ ├── EnsembleNeuralNetRegression.cs │ ├── ErrorMeasures.cs │ ├── IFunction.cs │ ├── KrigingRegression.cs │ ├── Observation.cs │ ├── RandomForestRegression.cs │ ├── Regression.cs │ ├── Sampling.cs │ ├── SimpleSearch.cs │ ├── SurrogateModelBuilder.cs │ ├── Testing │ │ └── ParametricStudy.cs │ └── ValidationResult.cs ├── Model │ ├── BaseDesign.cs │ ├── BraninObject.cs │ ├── ComputedMember.cs │ ├── ComputedStructure.cs │ ├── CoordVar.cs │ ├── DOF.cs │ ├── IDesign.cs │ ├── ISection.cs │ ├── ISetup.cs │ ├── IVariable.cs │ ├── Load.cs │ ├── LoadCase.cs │ ├── Material.cs │ ├── Member.cs │ ├── Node.cs │ ├── ParametricRelation.cs │ ├── RectangularSection.cs │ ├── RodSection.cs │ ├── RoundTubeSection.cs │ ├── Structure.cs │ └── StructureSetup.cs ├── Properties │ ├── AppManifest.xml │ └── AssemblyInfo.cs ├── Serialization │ ├── DXFMaker.cs │ └── FileSerializer.cs ├── StructureEngine.sln ├── StructureEngineCS_StormCloud.csproj ├── Test │ ├── DSGenerator.cs │ └── DSPlotter2D.cs ├── Utilities.cs └── View │ ├── DrawUtility.cs │ ├── GrammarControls │ ├── AirportDrawer.cs │ ├── BridgeDrawer.cs │ ├── DoubParamControl.xaml │ ├── DoubParamControl.xaml.cs │ ├── EnumParamControl.xaml │ ├── EnumParamControl.xaml.cs │ ├── HistoryControl.xaml │ ├── HistoryControl.xaml.cs │ ├── IntParamControl.xaml │ ├── IntParamControl.xaml.cs │ ├── RuleControl.xaml │ ├── RuleControl.xaml.cs │ ├── SetupParamControl.xaml │ ├── SetupParamControl.xaml.cs │ ├── SetupRuleControl.xaml │ ├── SetupRuleControl.xaml.cs │ ├── ShapeControl.xaml │ ├── ShapeControl.xaml.cs │ ├── SimpleDrawer.cs │ ├── SpliceMarkControl.xaml │ └── SpliceMarkControl.xaml.cs │ ├── IDrawer.cs │ ├── IModeBehavior.cs │ ├── InteractiveStructure │ ├── ComputedMemberControl.xaml │ ├── ComputedMemberControl.xaml.cs │ ├── ComputedMemberSimple.xaml │ ├── ComputedMemberSimple.xaml.cs │ ├── CursorControl.xaml │ ├── CursorControl.xaml.cs │ ├── GhostMember.xaml │ ├── GhostMember.xaml.cs │ ├── IControl.cs │ ├── MemberControl.xaml │ ├── MemberControl.xaml.cs │ ├── NodeClear.xaml │ ├── NodeClear.xaml.cs │ ├── NodeControl.xaml │ ├── NodeControl.xaml.cs │ ├── SelectionWindow.xaml │ ├── SelectionWindow.xaml.cs │ ├── SymmetryControl.xaml │ └── SymmetryControl.xaml.cs │ ├── ShapeControl_old.xaml │ ├── ShapeControl_old.xaml.cs │ └── StaticStructure │ ├── DesignControl.xaml │ ├── DesignControl.xaml.cs │ ├── GenerateBehavior.cs │ ├── RefineBehavior.cs │ ├── RefineStructureControl.xaml │ ├── RefineStructureControl.xaml.cs │ ├── SetupBehavior.cs │ ├── StructureControl.xaml │ ├── StructureControl.xaml.cs │ └── TrussDrawer.cs ├── Directory.Build.props ├── Diversity ├── Diversity.csproj ├── Diversity.csproj.user ├── DiversityComponent.cs ├── DiversityInfo.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── Diversity.png └── packages.config ├── Documentation ├── Installation instructions.docx ├── MIT_TLO_Software_Description.docx ├── MIT_TLO_Software_Description_LGPL.docx ├── images │ ├── Grasshopper_developer_setting.png │ ├── Grasshopper_developer_setting_check.png │ └── MOO_doc.png ├── tools_readme.docx ├── tools_readme_v1_1.docx ├── tools_readme_v1_1.pdf ├── tools_readme_v1_3.docx ├── tools_readme_v1_3.pdf ├── tools_readme_v1_4.docx ├── tools_readme_v1_4.pdf ├── tools_readme_v1_5.pdf └── tools_readme_v2.docx ├── Effects ├── Effects.csproj ├── Effects.csproj.user ├── EffectsComponent.cs ├── EffectsComponentAttributes.cs ├── EffectsInfo.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── Effects1.png ├── effects-test.gh └── packages.config ├── FixProject.vsix ├── Gradient_MOO ├── GradientMOOComponent.cs ├── GradientMOOComponentAttributes.cs ├── Gradient_MOO.csproj ├── Gradient_MOOInfo.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config └── packages.config ├── JMetalCSharp.V05 ├── JMetalCSharp.sln ├── JMetalCSharp │ ├── App.config │ ├── Core │ │ ├── Algorithm.cs │ │ ├── Operator.cs │ │ ├── Problem.cs │ │ ├── Solution.cs │ │ ├── SolutionSet.cs │ │ ├── SolutionType.cs │ │ └── Variable.cs │ ├── Data │ │ ├── Parameters │ │ │ └── Weight │ │ │ │ ├── W2D_1000.dat │ │ │ │ ├── W2D_300.dat │ │ │ │ ├── W2D_400.dat │ │ │ │ ├── W2D_500.dat │ │ │ │ ├── W2D_600.dat │ │ │ │ ├── W2D_800.dat │ │ │ │ ├── W3D_100.dat │ │ │ │ ├── W3D_1000.dat │ │ │ │ ├── W3D_1200.dat │ │ │ │ ├── W3D_300.dat │ │ │ │ ├── W3D_500.dat │ │ │ │ ├── W3D_600.dat │ │ │ │ ├── W3D_800.dat │ │ │ │ ├── W5D_1000.dat │ │ │ │ ├── W5D_1200.dat │ │ │ │ ├── W5D_1500.dat │ │ │ │ ├── W5D_1800.dat │ │ │ │ ├── W5D_2000.dat │ │ │ │ └── W5D_2500.dat │ │ └── ParetoFronts │ │ │ ├── CEC2009_UF1.pf │ │ │ ├── CEC2009_UF10.pf │ │ │ ├── CEC2009_UF2.pf │ │ │ ├── CEC2009_UF3.pf │ │ │ ├── CEC2009_UF4.pf │ │ │ ├── CEC2009_UF5.pf │ │ │ ├── CEC2009_UF6.pf │ │ │ ├── CEC2009_UF7.pf │ │ │ ├── CEC2009_UF8.pf │ │ │ ├── CEC2009_UF9.pf │ │ │ ├── CF1.pf │ │ │ ├── CF10.pf │ │ │ ├── CF2.pf │ │ │ ├── CF3.pf │ │ │ ├── CF4.pf │ │ │ ├── CF5.pf │ │ │ ├── CF6.pf │ │ │ ├── CF7.pf │ │ │ ├── CF8.pf │ │ │ ├── CF9.pf │ │ │ ├── DTLZ1.2D.pf │ │ │ ├── DTLZ1.3D.pf │ │ │ ├── DTLZ1.4D.pf │ │ │ ├── DTLZ1.6D.pf │ │ │ ├── DTLZ1.8D.pf │ │ │ ├── DTLZ1.pf │ │ │ ├── DTLZ2.2D.pf │ │ │ ├── DTLZ2.3D.pf │ │ │ ├── DTLZ2.4D.pf │ │ │ ├── DTLZ2.6D.pf │ │ │ ├── DTLZ2.8D.pf │ │ │ ├── DTLZ2.pf │ │ │ ├── DTLZ3.2D.pf │ │ │ ├── DTLZ3.3D.pf │ │ │ ├── DTLZ3.4D.pf │ │ │ ├── DTLZ3.6D.pf │ │ │ ├── DTLZ3.8D.pf │ │ │ ├── DTLZ3.pf │ │ │ ├── DTLZ4.2D.pf │ │ │ ├── DTLZ4.3D.pf │ │ │ ├── DTLZ4.4D.pf │ │ │ ├── DTLZ4.6D.pf │ │ │ ├── DTLZ4.8D.pf │ │ │ ├── DTLZ4.pf │ │ │ ├── DTLZ5.2D.pf │ │ │ ├── DTLZ5.3D.pf │ │ │ ├── DTLZ5.pf │ │ │ ├── DTLZ6.2D.pf │ │ │ ├── DTLZ6.3D.pf │ │ │ ├── DTLZ6.pf │ │ │ ├── DTLZ7.2D.pf │ │ │ ├── DTLZ7.3D.pf │ │ │ ├── DTLZ7.4D.pf │ │ │ ├── DTLZ7.6D.pf │ │ │ ├── DTLZ7.8D.pf │ │ │ ├── DTLZ7.pf │ │ │ ├── Fonseca.pf │ │ │ ├── Kursawe.pf │ │ │ ├── LZ07_F1.pf │ │ │ ├── LZ07_F2.pf │ │ │ ├── LZ07_F3.pf │ │ │ ├── LZ07_F4.pf │ │ │ ├── LZ07_F5.pf │ │ │ ├── LZ07_F6.pf │ │ │ ├── LZ07_F7.pf │ │ │ ├── LZ07_F8.pf │ │ │ ├── LZ07_F9.pf │ │ │ ├── LZ09_F1.pf │ │ │ ├── LZ09_F2.pf │ │ │ ├── LZ09_F3.pf │ │ │ ├── LZ09_F4.pf │ │ │ ├── LZ09_F5.pf │ │ │ ├── LZ09_F6.pf │ │ │ ├── LZ09_F7.pf │ │ │ ├── LZ09_F8.pf │ │ │ ├── LZ09_F9.pf │ │ │ ├── R2_DTLZ2_M5.pf │ │ │ ├── R3_DTLZ3_M5.pf │ │ │ ├── Schaffer.pf │ │ │ ├── Srinivas.pf │ │ │ ├── UF1.pf │ │ │ ├── UF10.pf │ │ │ ├── UF2.pf │ │ │ ├── UF3.pf │ │ │ ├── UF4.pf │ │ │ ├── UF5.pf │ │ │ ├── UF6.pf │ │ │ ├── UF7.pf │ │ │ ├── UF8.pf │ │ │ ├── UF9.pf │ │ │ ├── WFG1.2D.pf │ │ │ ├── WFG1.3D.pf │ │ │ ├── WFG1.pf │ │ │ ├── WFG1_M5.pf │ │ │ ├── WFG2.2D.pf │ │ │ ├── WFG2.3D.pf │ │ │ ├── WFG2.pf │ │ │ ├── WFG3.2D.pf │ │ │ ├── WFG3.3D.pf │ │ │ ├── WFG3.pf │ │ │ ├── WFG4.2D.pf │ │ │ ├── WFG4.3D.pf │ │ │ ├── WFG4.pf │ │ │ ├── WFG5.2D.pf │ │ │ ├── WFG5.3D.pf │ │ │ ├── WFG5.pf │ │ │ ├── WFG6.2D.pf │ │ │ ├── WFG6.3D.pf │ │ │ ├── WFG6.pf │ │ │ ├── WFG7.2D.pf │ │ │ ├── WFG7.3D.pf │ │ │ ├── WFG7.pf │ │ │ ├── WFG8.2D.pf │ │ │ ├── WFG8.3D.pf │ │ │ ├── WFG8.pf │ │ │ ├── WFG9.2D.pf │ │ │ ├── WFG9.3D.pf │ │ │ ├── WFG9.4D.pf │ │ │ ├── WFG9.6D.pf │ │ │ ├── WFG9.pf │ │ │ ├── ZDT1.pf │ │ │ ├── ZDT2.pf │ │ │ ├── ZDT3.pf │ │ │ ├── ZDT4.pf │ │ │ └── ZDT6.pf │ ├── Encoding │ │ ├── SolutionType │ │ │ ├── ArrayIntSolutionType.cs │ │ │ ├── ArrayRealAndBinarySolutionType.cs │ │ │ ├── ArrayRealSolutionType.cs │ │ │ ├── BinaryRealSolutionType.cs │ │ │ ├── BinarySolutionType.cs │ │ │ ├── IntRealSolutionType.cs │ │ │ ├── IntSolutionType.cs │ │ │ ├── PermutationSolutionType.cs │ │ │ └── RealSolutionType.cs │ │ └── Variable │ │ │ ├── ArrayInt.cs │ │ │ ├── ArrayReal.cs │ │ │ ├── Binary.cs │ │ │ ├── BinaryReal.cs │ │ │ ├── Int.cs │ │ │ ├── Permutation.cs │ │ │ └── Real.cs │ ├── Experiments │ │ ├── Experiment.cs │ │ ├── ExperimentProblem.cs │ │ └── Utils │ │ │ └── Statistics.cs │ ├── JMetalCSharp.csproj │ ├── License │ ├── Metaheuristics │ │ ├── AbYSS │ │ │ └── AbYSS.cs │ │ ├── AlgorithmFactory.cs │ │ ├── GDE3 │ │ │ └── GDE3.cs │ │ ├── MOCell │ │ │ ├── MOCell.cs │ │ │ ├── aMOCell1.cs │ │ │ ├── aMOCell2.cs │ │ │ ├── aMOCell3.cs │ │ │ ├── sMOCell1.cs │ │ │ └── sMOCell2.cs │ │ ├── MOEAD │ │ │ ├── CMOEAD.cs │ │ │ ├── MOEAD.cs │ │ │ ├── MOEAD_DRA.cs │ │ │ ├── PMOEAD.cs │ │ │ └── Utils.cs │ │ ├── NSGAII │ │ │ ├── NSGAII.cs │ │ │ ├── NSGAIIAdaptive.cs │ │ │ ├── NSGAIIRandom.cs │ │ │ ├── PNSGAII.cs │ │ │ ├── SSNSGAII.cs │ │ │ ├── SSNSGAIIAdaptive.cs │ │ │ └── SSNSGAIIRandom.cs │ │ ├── PAES │ │ │ └── PAES.cs │ │ ├── SMPSO │ │ │ ├── SMPSO.cs │ │ │ ├── SMPSOhv.cs │ │ │ └── pSMPSO.cs │ │ ├── SMSEMOA │ │ │ ├── FastSMSEMOA.cs │ │ │ └── SMSEMOA.cs │ │ └── SPEA2 │ │ │ └── SPEA2.cs │ ├── Operators │ │ ├── Crossover │ │ │ ├── BLXAlphaCrossover.cs │ │ │ ├── Crossover.cs │ │ │ ├── CrossoverFactory.cs │ │ │ ├── DifferentialEvolutionCrossover.cs │ │ │ ├── HUXCrossover.cs │ │ │ ├── PMXCrossover.cs │ │ │ ├── SBXCrossover.cs │ │ │ ├── SinglePointCrossover.cs │ │ │ └── TwoPointsCrossover.cs │ │ ├── LocalSearch │ │ │ ├── LocalSearch.cs │ │ │ ├── LocalSearchFactory.cs │ │ │ └── MutationLocalSearch.cs │ │ ├── Mutation │ │ │ ├── BitFlipMutation.cs │ │ │ ├── Mutation.cs │ │ │ ├── MutationFactory.cs │ │ │ ├── NonUniformMutation.cs │ │ │ ├── PolynomialBitFlipMutation.cs │ │ │ ├── PolynomialMutation.cs │ │ │ ├── SwapMutation.cs │ │ │ └── UniformMutation.cs │ │ └── Selection │ │ │ ├── BestSolutionSelection.cs │ │ │ ├── BinaryTournament.cs │ │ │ ├── BinaryTournament2.cs │ │ │ ├── DifferentialEvolutionSelection.cs │ │ │ ├── PESA2Selection.cs │ │ │ ├── RandomSelection.cs │ │ │ ├── RankingAndCrowdingSelection.cs │ │ │ ├── Selection.cs │ │ │ ├── SelectionFactory.cs │ │ │ └── WorstSolutionSelection.cs │ ├── Problems │ │ ├── DTLZ │ │ │ ├── DTLZ1.cs │ │ │ ├── DTLZ2.cs │ │ │ ├── DTLZ3.cs │ │ │ ├── DTLZ4.cs │ │ │ ├── DTLZ5.cs │ │ │ ├── DTLZ6.cs │ │ │ └── DTLZ7.cs │ │ ├── Fonseca │ │ │ └── Fonseca.cs │ │ ├── IntRealProblem │ │ │ └── IntRealProblem.cs │ │ ├── Kursawe │ │ │ └── Kursawe.cs │ │ ├── LZ09 │ │ │ ├── LZ09.cs │ │ │ ├── LZ09_F1.cs │ │ │ ├── LZ09_F2.cs │ │ │ ├── LZ09_F3.cs │ │ │ ├── LZ09_F4.cs │ │ │ ├── LZ09_F5.cs │ │ │ ├── LZ09_F6.cs │ │ │ ├── LZ09_F7.cs │ │ │ ├── LZ09_F8.cs │ │ │ └── LZ09_F9.cs │ │ ├── MTSP │ │ │ └── MTSP.cs │ │ ├── OneMax │ │ │ └── OneMax.cs │ │ ├── OneZeroMax │ │ │ └── OneZeroMax.cs │ │ ├── ProblemFactory.cs │ │ ├── Schaffer │ │ │ └── Schaffer.cs │ │ ├── WFG │ │ │ ├── Shapes.cs │ │ │ ├── Transformations.cs │ │ │ ├── WFG.cs │ │ │ ├── WFG1.cs │ │ │ ├── WFG2.cs │ │ │ ├── WFG3.cs │ │ │ ├── WFG4.cs │ │ │ ├── WFG5.cs │ │ │ ├── WFG6.cs │ │ │ ├── WFG7.cs │ │ │ ├── WFG8.cs │ │ │ └── WFG9.cs │ │ ├── Water │ │ │ └── Water.cs │ │ └── ZDT │ │ │ ├── ZDT1.cs │ │ │ ├── ZDT2.cs │ │ │ ├── ZDT3.cs │ │ │ ├── ZDT4.cs │ │ │ ├── ZDT5.cs │ │ │ └── ZDT6.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── QualityIndicator │ │ ├── Epsilon.cs │ │ ├── FastHypervolume │ │ │ ├── FastHypervolume.cs │ │ │ ├── FastHypervolumeArchive.cs │ │ │ └── WFG │ │ │ │ ├── Front.cs │ │ │ │ ├── Point.cs │ │ │ │ ├── PointComparator.cs │ │ │ │ └── WFGHV.cs │ │ ├── GenerationalDistance.cs │ │ ├── HyperVolume.cs │ │ ├── InvertedGenerationalDistance.cs │ │ ├── QualityIndicator.cs │ │ ├── Spread.cs │ │ └── Utils │ │ │ ├── LexicoGraphicalComparator.cs │ │ │ └── MetricsUtil.cs │ ├── Utils │ │ ├── AdaptiveGrid.cs │ │ ├── Archive │ │ │ ├── AdaptiveGridArchive.cs │ │ │ ├── Archive.cs │ │ │ └── CrowdingArchive.cs │ │ ├── BitSet.cs │ │ ├── Comparators │ │ │ ├── CrowdingComparator.cs │ │ │ ├── CrowdingDistanceComparator.cs │ │ │ ├── DominanceComparator.cs │ │ │ ├── EqualSolutions.cs │ │ │ ├── FitnessComparator.cs │ │ │ ├── IConstraintViolationComparator.cs │ │ │ ├── ObjectiveComparator.cs │ │ │ ├── OverallConstraintViolationComparator.cs │ │ │ ├── RankComparator.cs │ │ │ ├── SolutionComparator.cs │ │ │ └── ViolationThresholdComparator.cs │ │ ├── Distance.cs │ │ ├── DistanceNode.cs │ │ ├── DistanceNodeComparator.cs │ │ ├── JMetalRandom.cs │ │ ├── Logger.cs │ │ ├── Neighborhood.cs │ │ ├── NonDominatedSolutionList.cs │ │ ├── OffSpring │ │ │ ├── DifferentialEvolutionOffspring.cs │ │ │ ├── Offspring.cs │ │ │ ├── PolynomialMutationOffspring.cs │ │ │ └── SBXCrossoverOffspring.cs │ │ ├── Parallel │ │ │ ├── ISynchronousParallelRunner.cs │ │ │ ├── MultithreadedAlgorithmRunner.cs │ │ │ └── MultithreadedEvaluator.cs │ │ ├── PermutationUtility.cs │ │ ├── Ranking.cs │ │ ├── Shuffle.cs │ │ ├── Spea2Fitness.cs │ │ ├── Utils.cs │ │ └── Wrapper │ │ │ └── XReal.cs │ ├── author │ └── packages.config └── JMetalRunners │ ├── AbYSS │ └── AbYSS.cs │ ├── App.config │ ├── GDE3 │ └── GDE3.cs │ ├── JMetalRunners.csproj │ ├── JMetalRunners.csproj.vspscc │ ├── License │ ├── MOCell │ └── MOCell.cs │ ├── MOEAD │ ├── MOEAD.cs │ └── PMOEAD.cs │ ├── NSGAII │ ├── NSGAII.cs │ ├── NSGAIIAdaptive.cs │ ├── NSGAIImTSP.cs │ └── PNSGAII.cs │ ├── PAES │ └── PAES.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── SMPSO │ ├── SMPSO.cs │ ├── SMPSOhv.cs │ └── pSMPSO.cs │ ├── SMSEMOA │ └── SMSEMOA.cs │ ├── SPEA2 │ └── SPEA2.cs │ ├── author │ └── packages.config ├── MOO ├── MOO.cs ├── MOO.csproj ├── MOO.csproj.user ├── MOOComponentAttributes.cs ├── MOOInfo.cs ├── NSGAII.cs ├── NSGAIIProblem.cs ├── NSGAIIRunner.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── MOO1.png ├── app.config ├── log4net.config └── packages.config ├── README.md ├── Radical ├── DSOptimization │ ├── Design.cs │ ├── IOptimizeToolVM.cs │ ├── Model │ │ ├── Constraint.cs │ │ ├── CurveVariable.cs │ │ ├── DesignCurve.cs │ │ ├── DesignSurface.cs │ │ ├── GeoVariable.cs │ │ ├── IDesignGeometry.cs │ │ ├── IVariable.cs │ │ ├── SliderVariable.cs │ │ └── SurfaceVariable.cs │ ├── RadicalComponent.cs │ ├── View │ │ ├── BaseControl.cs │ │ ├── ConstraintControl.xaml │ │ ├── ConstraintControl.xaml.cs │ │ ├── GroupVariableControl.xaml │ │ ├── GroupVariableControl.xaml.cs │ │ ├── VariableControl.xaml │ │ ├── VariableControl.xaml.cs │ │ ├── VariableHeaderControl.xaml │ │ └── VariableHeaderControl.xaml.cs │ └── ViewModel │ │ ├── BaseVM.cs │ │ ├── ConstVM.cs │ │ ├── GroupVarVM.cs │ │ ├── IStepDataElement.cs │ │ ├── IViewModel.cs │ │ └── VarVM.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Radical.csproj ├── RadicalFolder │ ├── Components │ │ ├── IExplorationComponent.cs │ │ └── IOptimizationComponent.cs │ ├── DSModel │ │ ├── Constraint.cs │ │ ├── CurveVariable.cs │ │ ├── DesignCurve.cs │ │ ├── DesignSurface.cs │ │ ├── GeoVariable.cs │ │ ├── IDesignGeometry.cs │ │ ├── IVariable.cs │ │ ├── SliderVariable.cs │ │ └── SurfaceVariable.cs │ ├── DSView │ │ ├── BaseControl.cs │ │ ├── ConstraintControl.xaml │ │ ├── ConstraintControl.xaml.cs │ │ ├── DSOptimizeWindow.xaml │ │ ├── DSOptimizeWindow.xaml.cs │ │ ├── GroupVariableControl.xaml │ │ ├── GroupVariableControl.xaml.cs │ │ ├── VariableControl.xaml │ │ ├── VariableControl.xaml.cs │ │ ├── VariableHeaderControl.xaml │ │ └── VariableHeaderControl.xaml.cs │ ├── DSViewModel │ │ ├── BaseVM.cs │ │ ├── ConstVM.cs │ │ ├── GroupVarVM.cs │ │ ├── IStepDataElement.cs │ │ ├── IViewModel.cs │ │ └── VarVM.cs │ ├── Integration │ │ ├── Design.cs │ │ └── IDesign.cs │ ├── Model │ │ ├── RadicalOptimizer.cs │ │ ├── Sampler.cs │ │ └── csvWriter.cs │ ├── RadicalInfo.cs │ ├── View │ │ ├── GraphControl.xaml │ │ ├── GraphControl.xaml.cs │ │ ├── RadicalSettingsControl.xaml │ │ ├── RadicalSettingsControl.xaml.cs │ │ ├── RadicalWindow.xaml │ │ ├── RadicalWindow.xaml.cs │ │ └── packages.config │ └── ViewModel │ │ ├── GraphVM.cs │ │ └── RadicalVM.cs ├── Resources │ ├── DSOpt.png │ └── DSOpt2.png ├── app.config └── packages.config ├── Reader ├── MyProject1Info.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Reader.csproj ├── ReaderComponent.cs ├── ReaderInfo.cs ├── Resources │ └── Reader1.png └── packages.config ├── Sampler ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── Sampler1.png ├── Sampler.csproj ├── SamplerComponent.cs ├── SamplerComponentAttributes.cs ├── SamplerInfo.cs ├── SamplerUtilities.cs ├── app.config ├── bintest-01.csv ├── bintestncb-01.csv └── packages.config ├── Sift ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── sift1.png ├── Sift.csproj ├── Sift.csproj.user ├── SiftComponent.cs ├── SiftComponentAttributes.cs ├── SiftInfo.cs ├── app.config └── packages.config ├── Stepper ├── BaseControl.cs ├── BaseVM.cs ├── CurveVariable.cs ├── Design.cs ├── DesignCurve.cs ├── DesignSurface.cs ├── GeoVariable.cs ├── GroupVarVM.cs ├── IDesignGeometry.cs ├── IOptimizeToolVM.cs ├── IStepDataElement.cs ├── IVariable.cs ├── IViewModel.cs ├── ObjectiveVM.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SliderVariable.cs ├── Stepper.csproj ├── Stepper.csproj.user ├── StepperComponent.cs ├── StepperComponentAttributes.cs ├── StepperGraphVM.cs ├── StepperInfo.cs ├── StepperOptimizer.cs ├── StepperVM.cs ├── Styles.cs ├── SurfaceVariable.cs ├── VarVM.cs ├── packages.config └── stepperfolder │ ├── dsview │ ├── groupvariablecontrol.xaml │ ├── variablecontrol.xaml │ └── variableheadercontrol.xaml │ └── view │ ├── datacontrol.xaml │ ├── settingscontrol.xaml │ ├── steppergraphcontrol.xaml │ └── stepperwindow.xaml ├── StepperAux ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── Stepper.png ├── Stepper.csproj ├── Stepper │ ├── Design.cs │ ├── IOptimizeToolVM.cs │ ├── Model │ │ ├── CurveVariable.cs │ │ ├── DesignCurve.cs │ │ ├── DesignSurface.cs │ │ ├── GeoVariable.cs │ │ ├── IDesignGeometry.cs │ │ ├── IVariable.cs │ │ ├── SliderVariable.cs │ │ └── SurfaceVariable.cs │ ├── ObjectiveVM.cs │ ├── StepperComponent.cs │ ├── StepperComponentAttributes.cs │ ├── StepperInfo.cs │ ├── StepperOptimizer.cs │ ├── Styles.cs │ ├── View │ │ ├── BaseControl.cs │ │ ├── DataControl.xaml │ │ ├── DataControl.xaml.cs │ │ ├── GroupVariableControl.xaml │ │ ├── GroupVariableControl.xaml.cs │ │ ├── SettingsControl.xaml │ │ ├── SettingsControl.xaml.cs │ │ ├── StepperGraphControl.xaml │ │ ├── StepperGraphControl.xaml.cs │ │ ├── StepperWindow.xaml │ │ ├── StepperWindow.xaml.cs │ │ ├── VariableControl.xaml │ │ ├── VariableControl.xaml.cs │ │ ├── VariableHeaderControl.xaml │ │ └── VariableHeaderControl.xaml.cs │ └── ViewModel │ │ ├── BaseVM.cs │ │ ├── GroupVarVM.cs │ │ ├── IStepDataElement.cs │ │ ├── IViewModel.cs │ │ ├── StepperGraphVM.cs │ │ ├── StepperVM.cs │ │ └── VarVM.cs ├── app.config └── packages.config ├── StormCloud ├── 1StormCloudWindow.xaml.cs ├── 2StormCloudWindow.xaml.cs ├── 3StormCloudWindow.xaml.cs ├── AssemblyInfo.cs ├── Attributes │ └── InterOptComponentAttributes.cs ├── Components │ └── InterOptComponent.cs ├── DesignControl.xaml.cs ├── Evolutionary │ ├── Design.cs │ ├── DesignVar.cs │ └── EvolutionaryUtilities.cs ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── StormCloud.csproj ├── StormCloudInfo.cs ├── StormCloudWindow.xaml.cs ├── ViewModel │ ├── BaseVM.cs │ ├── DesignToolVM.cs │ ├── DesignVM.cs │ ├── RenderingSettings.cs │ └── RhinoHelixUtilities.cs ├── csvWriter.cs ├── designcontrol.xaml ├── packages.config ├── resources │ ├── gen_icon.png │ ├── gen_icon_small.png │ └── wrench.png └── stormcloudwindow.xaml ├── StormCloudAnalysis ├── AssemblyInfo.cs ├── Components │ ├── AnalysisComponent.cs │ ├── ConnectivityComponent.cs │ ├── Display.cs │ ├── LoadComponent.cs │ ├── MaterialComponent.cs │ ├── SectionComponent.cs │ ├── SizingComponent.cs │ └── SupportComponent.cs ├── Parameters │ ├── MaterialParameter.cs │ └── StructureParameter.cs ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── StormCloudAnalysis.csproj ├── StormCloudAnalysisInfo.cs ├── Test │ └── TestConnectivyComponent.cs ├── Types │ ├── MaterialType.cs │ └── StructureType.cs └── packages.config ├── StructureEngineCS └── StructureEngineCS │ ├── Analysis │ ├── BaseTrussAnalysis.cs │ ├── BraninTestFunction.cs │ ├── EquivFrameAnalysis.cs │ ├── IAnalysis.cs │ ├── RegAnalysis.cs │ ├── Results.cs │ ├── TrussAnalysis.cs │ └── TrussDispAnalysis.cs │ ├── AssemblyInfo.cs │ ├── Evolutionary │ ├── DiversityBooster.cs │ ├── EvoParams.cs │ ├── GramDivBooster.cs │ ├── IDivBooster.cs │ ├── ParDivBooster.cs │ └── PopulationGenerator.cs │ ├── Grammar │ ├── Airport │ │ ├── AirportAnalysis.cs │ │ ├── AirportGrammar.cs │ │ ├── AirportShape.cs │ │ ├── AirportShapeState.cs │ │ └── Rules │ │ │ ├── Rule001.cs │ │ │ ├── Rule002.cs │ │ │ ├── Rule003.cs │ │ │ ├── Rule004.cs │ │ │ ├── Rule005.cs │ │ │ └── RuleA.cs │ ├── BaseGrammar.cs │ ├── BaseRule`1.cs │ ├── BaseShape.cs │ ├── Bridge │ │ ├── BridgeAnalysis.cs │ │ ├── BridgeGrammar.cs │ │ ├── BridgeShape.cs │ │ ├── BridgeShapeState.cs │ │ └── Rules │ │ │ ├── Rule001.cs │ │ │ ├── Rule002.cs │ │ │ ├── Rule003.cs │ │ │ ├── Rule004.cs │ │ │ ├── Rule005.cs │ │ │ ├── Rule006.cs │ │ │ ├── Rule007.cs │ │ │ ├── Rule008.cs │ │ │ ├── Rule009.cs │ │ │ ├── Rule010.cs │ │ │ ├── Rule011.cs │ │ │ ├── Rule012.cs │ │ │ ├── Rule013.cs │ │ │ ├── Rule014.cs │ │ │ ├── Rule015.cs │ │ │ ├── Rule016.cs │ │ │ ├── Rule017.cs │ │ │ ├── RuleA.cs │ │ │ ├── RuleB.cs │ │ │ ├── RuleC.cs │ │ │ └── RuleD.cs │ ├── ByXCoordComparer.cs │ ├── ByXLineComparer.cs │ ├── DoubleParameter.cs │ ├── ElementGroup.cs │ ├── EnumParameter.cs │ ├── GrammarSetup.cs │ ├── IElement.cs │ ├── IElementGroup.cs │ ├── IGrammar.cs │ ├── IGrammarAnalysis.cs │ ├── IRule.cs │ ├── IRuleParameter.cs │ ├── IShape.cs │ ├── IShapeState.cs │ ├── IntParameter.cs │ ├── RandomComputation.cs │ ├── RuleSet.cs │ ├── ShapeArea.cs │ ├── ShapeComputation.cs │ ├── ShapeHistory.cs │ ├── ShapeLine.cs │ ├── ShapePoint.cs │ ├── ShapePointLoad.cs │ └── Simple │ │ ├── Rules │ │ ├── Rule001.cs │ │ ├── Rule002.cs │ │ ├── Rule003.cs │ │ └── RuleA.cs │ │ ├── SimpleAnalysis.cs │ │ ├── SimpleGrammar.cs │ │ ├── SimpleShape.cs │ │ └── SimpleShapeState.cs │ ├── GraphicStatics │ ├── ForcePolygon.cs │ ├── FormDiagram.cs │ ├── PointLoad.cs │ └── ProblemSetup.cs │ ├── Logging │ ├── DefaultRequestController.cs │ ├── Generation.cs │ ├── HttpWebRequestBuilder.cs │ ├── IRequestController.cs │ ├── LoadCaseSerializer.cs │ ├── MemberSerializer.cs │ ├── NodeSerializer.cs │ ├── Session.cs │ └── StructureSerializer.cs │ ├── MachineLearning │ ├── DoubleIntComparer.cs │ ├── EnsembleNeuralNetRegression.cs │ ├── ErrorMeasures.cs │ ├── IFunction.cs │ ├── KrigingRegression.cs │ ├── MLE.cs │ ├── MMComparer.cs │ ├── MathUtility.cs │ ├── ObsCompare.cs │ ├── Observation.cs │ ├── PhiqCompararer.cs │ ├── PopComparer.cs │ ├── RandomForestRegression.cs │ ├── Regression.cs │ ├── RegressionReport.cs │ ├── RegressionTest.cs │ ├── SampleType.cs │ ├── Sampling.cs │ ├── SimpleSearch.cs │ ├── SurrogateModelBuilder.cs │ ├── Testing │ │ ├── ParametricStudy.cs │ │ └── RegCase.cs │ └── ValidationResult.cs │ ├── Model │ ├── BaseDesign.cs │ ├── BraninObject.cs │ ├── ComputedMember.cs │ ├── ComputedStructure.cs │ ├── DOF.cs │ ├── IDesign.cs │ ├── ISection.cs │ ├── ISetup.cs │ ├── IVariable.cs │ ├── Load.cs │ ├── LoadCase.cs │ ├── Material.cs │ ├── Member.cs │ ├── Node.cs │ ├── ParametricRelation.cs │ ├── RectangularSection.cs │ ├── RelationType.cs │ ├── RodSection.cs │ ├── RoundTubeSection.cs │ ├── SectionType.cs │ ├── Structure.cs │ └── StructureSetup.cs │ ├── StructureEngineCS.csproj │ ├── Test │ ├── DSGenerator.cs │ └── DSPlotter2D.cs │ ├── Utilities.cs │ ├── assets │ └── fit_002520files │ │ └── michelltruss2panel.fit │ └── packages.config ├── StructureEngineCS_StormCloud ├── Analysis │ └── FrameAnalysis.cs ├── AssemblyInfo.cs ├── Model │ ├── ComputedMember.cs │ ├── ComputedStructure.cs │ ├── DOF.cs │ ├── ISection.cs │ ├── Load.cs │ ├── LoadCase.cs │ ├── Material.cs │ ├── Member.cs │ ├── MemberType.cs │ ├── Node.cs │ ├── RectangularSection.cs │ ├── RodSection.cs │ ├── RoundTubeSection.cs │ ├── Section.cs │ ├── SectionType.cs │ ├── SquareSection.cs │ ├── Structure.cs │ └── StructureDim.cs ├── StructureEngineCS_StormCloud.csproj ├── StructureEngineCS_StormCloud.sln ├── lib │ ├── MathNet.Numerics.dll │ └── RhinoCommon.dll └── packages.config ├── Tilde ├── .gitattributes ├── .gitignore ├── DSECommon.dll ├── Global.cs ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── Tilde.png ├── Sample Files │ └── Tilde-Test-File.gh ├── Tilde.Properties.Resources.resources ├── Tilde.csproj ├── Tilde │ ├── ProblemBuilder.cs │ ├── Properties │ │ └── Resources.cs │ ├── TildeComponent.cs │ ├── TildeComponentAttributes.cs │ └── TildeInfo.cs ├── app.config ├── gh-tilde.sln └── packages.config ├── Writer ├── MyComponent1.cs ├── MyProject1Info.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── Writer1.png ├── Writer.cs ├── Writer.csproj ├── WriterComponentUtilities.cs ├── WriterInfo.cs └── packages.config ├── _TestFiles ├── 7_bar_truss_example.gh ├── Effects-test.gh ├── MOO-test.gh ├── MOO-test_unplugged.gh ├── capture-test.gh ├── cluster-test.gh ├── diversity-test-sort.gh ├── diversity-test.gh ├── diversity-test2obj.gh ├── diversity_MOO_test.gh ├── radical-test-surface.gh ├── radical-test.gh ├── reader-test-data.csv ├── reader-test.gh ├── sampler-test.gh ├── sift-test.gh ├── stepper-test.gh ├── stepper-test_complicated_function.gh ├── tilde-test.gh └── writer-test.gh ├── netDxf ├── doc │ ├── Changelog.txt │ ├── License.txt │ └── netDxf Documentation.chm └── netDxf │ ├── AciColor.cs │ ├── Blocks │ ├── Block.cs │ ├── BlockEnd.cs │ └── BlockTypeFlags.cs │ ├── CodeValuePair.cs │ ├── DrawingUnits.cs │ ├── DxfDocument.cs │ ├── DxfException.cs │ ├── DxfObject.cs │ ├── DxfObjectCode.cs │ ├── DxfReader.cs │ ├── DxfWriter.cs │ ├── Entities │ ├── AlignedDimension.cs │ ├── Angular2LineDimension.cs │ ├── Angular3PointDimension.cs │ ├── Arc.cs │ ├── Attribute.cs │ ├── AttributeDefinition.cs │ ├── Circle.cs │ ├── DiametricDimension.cs │ ├── Dimension.cs │ ├── DimensionType.cs │ ├── Ellipse.cs │ ├── EndSequence.cs │ ├── EntityObject.cs │ ├── Face3d.cs │ ├── Hatch.cs │ ├── HatchBoundaryPath.cs │ ├── HatchGradientPattern.cs │ ├── HatchPattern.cs │ ├── HatchPatternLineDefinition.cs │ ├── Image.cs │ ├── ImageClippingBoundary.cs │ ├── ImageDisplayFlags.cs │ ├── Insert.cs │ ├── Line.cs │ ├── LinearDimension.cs │ ├── LwPolyline.cs │ ├── LwPolylineVertex.cs │ ├── MLine.cs │ ├── MLineVertex.cs │ ├── MText.cs │ ├── MTextAttachmentPoint.cs │ ├── MTextFormattingOptions.cs │ ├── MTextLineSpacingStyle.cs │ ├── OrdinateDimension.cs │ ├── OrdinateDimensionAxis.cs │ ├── Point.cs │ ├── PolyfaceMesh.cs │ ├── PolyfaceMeshFace.cs │ ├── PolyfaceMeshVertex.cs │ ├── Polyline.cs │ ├── PolylineSmoothType.cs │ ├── PolylineTypeFlags.cs │ ├── PolylineVertex.cs │ ├── RadialDimension.cs │ ├── Solid.cs │ ├── Spline.cs │ ├── SplineTypeFlags.cs │ ├── SplineVertex.cs │ ├── Text.cs │ ├── TextAligment.cs │ ├── Vertex.cs │ └── VertexTypeFlags.cs │ ├── Header │ ├── AttMode.cs │ ├── DxfVersion.cs │ ├── HeaderVariable.cs │ ├── HeaderVariableCode.cs │ ├── HeaderVariables.cs │ └── PointShape.cs │ ├── Lineweight.cs │ ├── MathHelper.cs │ ├── Matrix3.cs │ ├── NetDxf.SL.csproj │ ├── NetDxf.csproj │ ├── Objects │ ├── DictionaryObject.cs │ ├── Group.cs │ ├── ImageDef.cs │ ├── ImageDefReactor.cs │ ├── MLineStyle.cs │ ├── MLineStyleElement.cs │ └── RasterVariables.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── SLHacks.cs │ ├── StringCode.cs │ ├── StringEnum.cs │ ├── SubclassMarker.cs │ ├── Symbols.cs │ ├── Tables │ ├── ApplicationRegistry.cs │ ├── BlockRecord.cs │ ├── DimensionStyle.cs │ ├── Layer.cs │ ├── LineType.cs │ ├── TableObject.cs │ ├── TextStyle.cs │ ├── View.cs │ └── ViewPort.cs │ ├── UpgradeLog.htm │ ├── Vector2.cs │ ├── Vector3.cs │ ├── XData.cs │ ├── XDataCode.cs │ └── XDataRecord.cs ├── structurefit-master ├── .gitignore ├── 3DTest │ ├── 3DTest.csproj │ ├── 3DTest.sln │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── RhinoScript.cs │ └── packages.config ├── DesignTool │ ├── Analysis │ │ ├── BaseTrussAnalysis.cs │ │ ├── BraninTestFunction.cs │ │ ├── EquivFrameAnalysis.cs │ │ ├── GraphicStatics │ │ │ ├── ForcePolygon.cs │ │ │ ├── FormDiagram.cs │ │ │ ├── PointLoad.cs │ │ │ └── ProblemSetup.cs │ │ ├── IAnalysis.cs │ │ ├── RegAnalysis.cs │ │ ├── Results.cs │ │ ├── TrussAnalysis.cs │ │ └── TrussDispAnalysis.cs │ ├── Assets │ │ └── FIT Files │ │ │ ├── MichellTruss2Panel.fit │ │ │ ├── MichellTruss2PanelMetric-FINAL.fit │ │ │ ├── MichellTruss2PanelMetric.fit │ │ │ └── MichellTruss2PanelMetric2.fit │ ├── ClassDiagram1.cd │ ├── EvoConsole │ │ ├── EvoConsole.csproj │ │ ├── EvoConsole.sln │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── Evolutionary │ │ ├── DiversityBooster.cs │ │ ├── EvoParams.cs │ │ ├── GramDivBooster.cs │ │ ├── IDivBooster.cs │ │ ├── ParDivBooster.cs │ │ └── PopulationGenerator.cs │ ├── Grammar │ │ ├── Airport │ │ │ ├── AirportAnalysis.cs │ │ │ ├── AirportGrammar.cs │ │ │ ├── AirportShape.cs │ │ │ ├── AirportShapeState.cs │ │ │ └── Rules │ │ │ │ ├── Rule001.cs │ │ │ │ ├── Rule002.cs │ │ │ │ ├── Rule003.cs │ │ │ │ ├── Rule004.cs │ │ │ │ ├── Rule005.cs │ │ │ │ └── RuleA.cs │ │ ├── BaseGrammar.cs │ │ ├── BaseRule.cs │ │ ├── BaseShape.cs │ │ ├── Bridge │ │ │ ├── BridgeAnalysis.cs │ │ │ ├── BridgeGrammar.cs │ │ │ ├── BridgeShape.cs │ │ │ ├── BridgeShapeState.cs │ │ │ └── Rules │ │ │ │ ├── Rule001.cs │ │ │ │ ├── Rule002.cs │ │ │ │ ├── Rule003.cs │ │ │ │ ├── Rule004.cs │ │ │ │ ├── Rule005.cs │ │ │ │ ├── Rule006.cs │ │ │ │ ├── Rule007.cs │ │ │ │ ├── Rule008.cs │ │ │ │ ├── Rule009.cs │ │ │ │ ├── Rule010.cs │ │ │ │ ├── Rule011.cs │ │ │ │ ├── Rule012.cs │ │ │ │ ├── Rule013.cs │ │ │ │ ├── Rule014.cs │ │ │ │ ├── Rule015.cs │ │ │ │ ├── Rule016.cs │ │ │ │ ├── Rule017.cs │ │ │ │ ├── RuleA.cs │ │ │ │ ├── RuleB.cs │ │ │ │ ├── RuleC.cs │ │ │ │ └── RuleD.cs │ │ ├── DoubleParameter.cs │ │ ├── ElementGroup.cs │ │ ├── EnumParameter.cs │ │ ├── GrammarSetup.cs │ │ ├── IElement.cs │ │ ├── IElementGroup.cs │ │ ├── IGrammar.cs │ │ ├── IGrammarAnalysis.cs │ │ ├── IRule.cs │ │ ├── IRuleParameter.cs │ │ ├── IShape.cs │ │ ├── IShapeState.cs │ │ ├── IntParameter.cs │ │ ├── RandomComputation.cs │ │ ├── RuleSet.cs │ │ ├── ShapeArea.cs │ │ ├── ShapeComputation.cs │ │ ├── ShapeHistory.cs │ │ ├── ShapeLine.cs │ │ ├── ShapePoint.cs │ │ ├── ShapePointLoad.cs │ │ └── Simple │ │ │ ├── Rules │ │ │ ├── Rule001.cs │ │ │ ├── Rule002.cs │ │ │ ├── Rule003.cs │ │ │ └── RuleA.cs │ │ │ ├── SimpleAnalysis.cs │ │ │ ├── SimpleGrammar.cs │ │ │ ├── SimpleShape.cs │ │ │ └── SimpleShapeState.cs │ ├── Logging │ │ ├── Generation.cs │ │ ├── HttpWebRequestBuilder.cs │ │ ├── LoadCaseSerializer.cs │ │ ├── MemberSerializer.cs │ │ ├── NodeSerializer.cs │ │ ├── Session.cs │ │ └── StructureSerializer.cs │ ├── MachineLearning │ │ ├── EnsembleNeuralNetRegression.cs │ │ ├── ErrorMeasures.cs │ │ ├── IFunction.cs │ │ ├── KrigingRegression.cs │ │ ├── Observation.cs │ │ ├── RandomForestRegression.cs │ │ ├── Regression.cs │ │ ├── Sampling.cs │ │ ├── SimpleSearch.cs │ │ ├── SurrogateModelBuilder.cs │ │ ├── Testing │ │ │ └── ParametricStudy.cs │ │ └── ValidationResult.cs │ ├── Model │ │ ├── BaseDesign.cs │ │ ├── BraninObject.cs │ │ ├── ComputedMember.cs │ │ ├── ComputedStructure.cs │ │ ├── CoordVar.cs │ │ ├── DOF.cs │ │ ├── IDesign.cs │ │ ├── ISection.cs │ │ ├── ISetup.cs │ │ ├── IVariable.cs │ │ ├── Load.cs │ │ ├── LoadCase.cs │ │ ├── Material.cs │ │ ├── Member.cs │ │ ├── Node.cs │ │ ├── ParametricRelation.cs │ │ ├── RectangularSection.cs │ │ ├── RodSection.cs │ │ ├── RoundTubeSection.cs │ │ ├── Structure.cs │ │ └── StructureSetup.cs │ ├── Properties │ │ ├── AppManifest.xml │ │ └── AssemblyInfo.cs │ ├── Serialization │ │ ├── DXFMaker.cs │ │ └── FileSerializer.cs │ ├── StructureEngine.sln │ ├── StructureEngineCS_StormCloud.csproj │ ├── Test │ │ ├── DSGenerator.cs │ │ └── DSPlotter2D.cs │ ├── Utilities.cs │ └── View │ │ ├── DrawUtility.cs │ │ ├── GrammarControls │ │ ├── AirportDrawer.cs │ │ ├── BridgeDrawer.cs │ │ ├── DoubParamControl.xaml │ │ ├── DoubParamControl.xaml.cs │ │ ├── EnumParamControl.xaml │ │ ├── EnumParamControl.xaml.cs │ │ ├── HistoryControl.xaml │ │ ├── HistoryControl.xaml.cs │ │ ├── IntParamControl.xaml │ │ ├── IntParamControl.xaml.cs │ │ ├── RuleControl.xaml │ │ ├── RuleControl.xaml.cs │ │ ├── SetupParamControl.xaml │ │ ├── SetupParamControl.xaml.cs │ │ ├── SetupRuleControl.xaml │ │ ├── SetupRuleControl.xaml.cs │ │ ├── ShapeControl.xaml │ │ ├── ShapeControl.xaml.cs │ │ ├── SimpleDrawer.cs │ │ ├── SpliceMarkControl.xaml │ │ └── SpliceMarkControl.xaml.cs │ │ ├── IDrawer.cs │ │ ├── IModeBehavior.cs │ │ ├── InteractiveStructure │ │ ├── ComputedMemberControl.xaml │ │ ├── ComputedMemberControl.xaml.cs │ │ ├── ComputedMemberSimple.xaml │ │ ├── ComputedMemberSimple.xaml.cs │ │ ├── CursorControl.xaml │ │ ├── CursorControl.xaml.cs │ │ ├── GhostMember.xaml │ │ ├── GhostMember.xaml.cs │ │ ├── IControl.cs │ │ ├── MemberControl.xaml │ │ ├── MemberControl.xaml.cs │ │ ├── NodeClear.xaml │ │ ├── NodeClear.xaml.cs │ │ ├── NodeControl.xaml │ │ ├── NodeControl.xaml.cs │ │ ├── SelectionWindow.xaml │ │ ├── SelectionWindow.xaml.cs │ │ ├── SymmetryControl.xaml │ │ └── SymmetryControl.xaml.cs │ │ ├── ShapeControl_old.xaml │ │ ├── ShapeControl_old.xaml.cs │ │ └── StaticStructure │ │ ├── DesignControl.xaml │ │ ├── DesignControl.xaml.cs │ │ ├── GenerateBehavior.cs │ │ ├── RefineBehavior.cs │ │ ├── RefineStructureControl.xaml │ │ ├── RefineStructureControl.xaml.cs │ │ ├── SetupBehavior.cs │ │ ├── StructureControl.xaml │ │ ├── StructureControl.xaml.cs │ │ └── TrussDrawer.cs ├── Libraries │ ├── AlgLib │ │ ├── AlgLib.SL.csproj │ │ ├── AlgLib.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── alglibinternal.cs │ │ ├── alglibmisc.cs │ │ ├── ap.cs │ │ ├── dataanalysis.cs │ │ ├── diffequations.cs │ │ ├── fasttransforms.cs │ │ ├── integration.cs │ │ ├── interpolation.cs │ │ ├── linalg.cs │ │ ├── optimization.cs │ │ ├── solvers.cs │ │ ├── specialfunctions.cs │ │ └── statistics.cs │ ├── MathNet.Numerics │ │ ├── License.txt │ │ ├── MathNet.Numerics.chm │ │ ├── lib │ │ │ ├── Net40 │ │ │ │ ├── MathNet.Numerics.FSharp.XML │ │ │ │ ├── MathNet.Numerics.FSharp.dll │ │ │ │ ├── MathNet.Numerics.dll │ │ │ │ ├── MathNet.Numerics.xml │ │ │ │ └── zlib.net.dll │ │ │ └── SL4 │ │ │ │ ├── MathNet.Numerics.dll │ │ │ │ ├── MathNet.Numerics.xml │ │ │ │ ├── System.Numerics.dll │ │ │ │ ├── de │ │ │ │ └── System.Numerics.resources.dll │ │ │ │ ├── es │ │ │ │ └── System.Numerics.resources.dll │ │ │ │ ├── fr │ │ │ │ └── System.Numerics.resources.dll │ │ │ │ ├── it │ │ │ │ └── System.Numerics.resources.dll │ │ │ │ ├── ja │ │ │ │ └── System.Numerics.resources.dll │ │ │ │ ├── ko │ │ │ │ └── System.Numerics.resources.dll │ │ │ │ ├── ru │ │ │ │ └── System.Numerics.resources.dll │ │ │ │ ├── zh-Hans │ │ │ │ └── System.Numerics.resources.dll │ │ │ │ └── zh-Hant │ │ │ │ └── System.Numerics.resources.dll │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Examples │ │ │ ├── Examples.csproj │ │ │ ├── LinearAlgebra │ │ │ │ ├── DirectSolvers.cs │ │ │ │ ├── Factorization │ │ │ │ │ ├── Cholesky.cs │ │ │ │ │ ├── Evd.cs │ │ │ │ │ ├── LU.cs │ │ │ │ │ ├── QR.cs │ │ │ │ │ └── Svd.cs │ │ │ │ ├── MatrixArithmeticOperations.cs │ │ │ │ ├── MatrixDataAccessor.cs │ │ │ │ ├── MatrixInitialization.cs │ │ │ │ ├── MatrixNorms.cs │ │ │ │ ├── MatrixRowColumnOperations.cs │ │ │ │ ├── MatrixSpecialNumbers.cs │ │ │ │ ├── MatrixTransposeAndInverse.cs │ │ │ │ ├── MatrixTriangular.cs │ │ │ │ ├── VectorArithmeticOperations.cs │ │ │ │ ├── VectorDataAccessor.cs │ │ │ │ └── VectorInitialization.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── FSharp │ │ │ ├── DenseMatrix.fs │ │ │ ├── DenseVector.fs │ │ │ ├── FSharp.fsproj │ │ │ ├── Main.fs │ │ │ ├── Matrix.fs │ │ │ ├── SparseMatrix.fs │ │ │ ├── SparseVector.fs │ │ │ └── Vector.fs │ │ │ ├── FSharpExamples │ │ │ ├── Apply.fs │ │ │ ├── DenseVector.fs │ │ │ ├── FSharpExamples.fsproj │ │ │ ├── Histogram.fs │ │ │ └── MCMC.fs │ │ │ ├── FSharpUnitTests │ │ │ ├── App.config │ │ │ ├── FSharpUnitTests.fsproj │ │ │ ├── FsUnit.fs │ │ │ └── Program.fs │ │ │ ├── Local.testsettings │ │ │ ├── MSUnitTests │ │ │ ├── AssertHelpers.cs │ │ │ ├── LinearAlgebraProviderTests │ │ │ │ └── Double │ │ │ │ │ ├── LinearAlgebraProviderTests.cs │ │ │ │ │ └── LinearAlgebraProviderTests.cs.orig │ │ │ ├── MSUnitTests.csproj │ │ │ ├── MSUnitTests.csproj.orig │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── MathNet.Numerics.sln │ │ │ ├── MathNet.Numerics.snk │ │ │ ├── MathNet.Numerics.vsmdi │ │ │ ├── NativeWrappers │ │ │ ├── .gitignore │ │ │ ├── ATLAS │ │ │ │ ├── blas.h │ │ │ │ └── lapack.cpp │ │ │ ├── Common │ │ │ │ ├── WindowsDLL.cpp │ │ │ │ ├── blas.c │ │ │ │ ├── common.h │ │ │ │ ├── resource.h │ │ │ │ └── resource.rc │ │ │ ├── MKL │ │ │ │ ├── blas.h │ │ │ │ ├── lapack.cpp │ │ │ │ └── vector_functions.c │ │ │ └── Windows │ │ │ │ ├── ACML │ │ │ │ └── ACMLWrapper.vcproj │ │ │ │ ├── ATLAS │ │ │ │ ├── ATLASWrapper.vcproj │ │ │ │ ├── ATLASWrapper.vcxproj │ │ │ │ └── ATLASWrapper.vcxproj.filters │ │ │ │ ├── ATLASWrapperTests │ │ │ │ ├── ATLASWrapperTests.csproj │ │ │ │ ├── LinearAlgebra │ │ │ │ │ └── Double │ │ │ │ │ │ └── AtlasLinearAlgebraProviderTests.cs │ │ │ │ └── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Local.testsettings │ │ │ │ ├── MKL │ │ │ │ ├── MKLWrapper.vcproj │ │ │ │ ├── MKLWrapper.vcxproj │ │ │ │ └── MKLWrapper.vcxproj.filters │ │ │ │ ├── MKLWrapper32Tests │ │ │ │ ├── LinearAlgebra │ │ │ │ │ └── Double │ │ │ │ │ │ └── MklLinearAlgebraProviderTests.cs │ │ │ │ ├── MKLWrapper32Tests.csproj │ │ │ │ └── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── MKLWrapper64Tests │ │ │ │ ├── MKLWrapper64Tests.csproj │ │ │ │ └── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── NativeWrappers.sln │ │ │ │ ├── NativeWrappers.vsmdi │ │ │ │ └── TraceAndTestImpact.testsettings │ │ │ ├── Numerics │ │ │ ├── Algorithms │ │ │ │ └── LinearAlgebra │ │ │ │ │ ├── ILinearAlgebraProvider.cs │ │ │ │ │ ├── ILinearAlgebraProviderOfT.cs │ │ │ │ │ ├── ManagedLinearAlgebraProvider.Complex.cs │ │ │ │ │ ├── ManagedLinearAlgebraProvider.Complex32.cs │ │ │ │ │ ├── ManagedLinearAlgebraProvider.Double.cs │ │ │ │ │ ├── ManagedLinearAlgebraProvider.Single.cs │ │ │ │ │ ├── Mkl │ │ │ │ │ ├── MklLinearAlgebraProvider.Common.tt │ │ │ │ │ ├── MklLinearAlgebraProvider.Complex.tt │ │ │ │ │ ├── MklLinearAlgebraProvider.Complex32.tt │ │ │ │ │ ├── MklLinearAlgebraProvider.double.tt │ │ │ │ │ ├── MklLinearAlgebraProvider.float.tt │ │ │ │ │ └── SafeNativeMethods.tt │ │ │ │ │ ├── native.common.include │ │ │ │ │ ├── native.footer.include │ │ │ │ │ ├── native.generic.include │ │ │ │ │ ├── native.header.include │ │ │ │ │ ├── native.vector.include │ │ │ │ │ ├── safe.native.common.include │ │ │ │ │ └── safe.native.vector.include │ │ │ ├── Combinatorics.cs │ │ │ ├── Complex32.cs │ │ │ ├── ComplexExtensions.cs │ │ │ ├── Constants.cs │ │ │ ├── Control.cs │ │ │ ├── Distributions │ │ │ │ ├── Continuous │ │ │ │ │ ├── Beta.cs │ │ │ │ │ ├── Cauchy.cs │ │ │ │ │ ├── Chi.cs │ │ │ │ │ ├── ChiSquare.cs │ │ │ │ │ ├── ContinuousUniform.cs │ │ │ │ │ ├── Erlang.cs │ │ │ │ │ ├── Exponential.cs │ │ │ │ │ ├── FisherSnedecor.cs │ │ │ │ │ ├── Gamma.cs │ │ │ │ │ ├── InverseGamma.cs │ │ │ │ │ ├── Laplace.cs │ │ │ │ │ ├── LogNormal.cs │ │ │ │ │ ├── Normal.cs │ │ │ │ │ ├── Pareto.cs │ │ │ │ │ ├── Rayleigh.cs │ │ │ │ │ ├── Stable.cs │ │ │ │ │ ├── StudentT.cs │ │ │ │ │ └── Weibull.cs │ │ │ │ ├── Discrete │ │ │ │ │ ├── Bernoulli.cs │ │ │ │ │ ├── Binomial.cs │ │ │ │ │ ├── Categorical.cs │ │ │ │ │ ├── ConwayMaxwellPoisson.cs │ │ │ │ │ ├── DiscreteUniform.cs │ │ │ │ │ ├── Geometric.cs │ │ │ │ │ ├── Hypergeometric.cs │ │ │ │ │ ├── NegativeBinomial.cs │ │ │ │ │ ├── Poisson.cs │ │ │ │ │ └── Zipf.cs │ │ │ │ ├── IContinuousDistribution.cs │ │ │ │ ├── IDiscreteDistribution.cs │ │ │ │ ├── IDistribution.cs │ │ │ │ ├── ISetDistribution.cs │ │ │ │ └── Multivariate │ │ │ │ │ ├── Dirichlet.cs │ │ │ │ │ ├── InverseWishart.cs │ │ │ │ │ ├── MatrixNormal.cs │ │ │ │ │ ├── Multinomial.cs │ │ │ │ │ ├── NormalGamma.cs │ │ │ │ │ └── Wishart.cs │ │ │ ├── GlobalizationHelper.cs │ │ │ ├── IPrecisionSupport.cs │ │ │ ├── IntegralTransforms │ │ │ │ ├── Algorithms │ │ │ │ │ ├── DiscreteFourierTransform.Bluestein.cs │ │ │ │ │ ├── DiscreteFourierTransform.Naive.cs │ │ │ │ │ ├── DiscreteFourierTransform.Options.cs │ │ │ │ │ ├── DiscreteFourierTransform.RadixN.cs │ │ │ │ │ ├── DiscreteHartleyTransform.Naive.cs │ │ │ │ │ └── DiscreteHartleyTransform.Options.cs │ │ │ │ ├── FourierOptions.cs │ │ │ │ ├── HartleyOptions.cs │ │ │ │ └── Transform.cs │ │ │ ├── Integration │ │ │ │ ├── Algorithms │ │ │ │ │ ├── DoubleExponentialTransformation.cs │ │ │ │ │ ├── NewtonCotesTrapeziumRule.cs │ │ │ │ │ └── SimpsonRule.cs │ │ │ │ └── Integrate.cs │ │ │ ├── Interpolation │ │ │ │ ├── Algorithms │ │ │ │ │ ├── AkimaSplineInterpolation.cs │ │ │ │ │ ├── BarycentricInterpolation.cs │ │ │ │ │ ├── BulirschStoerRationalInterpolation.cs │ │ │ │ │ ├── CubicHermiteSplineInterpolation.cs │ │ │ │ │ ├── CubicSplineInterpolation.cs │ │ │ │ │ ├── EquidistantPolynomialInterpolation.cs │ │ │ │ │ ├── FloaterHormannRationalInterpolation.cs │ │ │ │ │ ├── LinearSplineInterpolation.cs │ │ │ │ │ ├── NevillePolynomialInterpolation.cs │ │ │ │ │ └── SplineInterpolation.cs │ │ │ │ ├── IInterpolation.cs │ │ │ │ ├── Interpolate.cs │ │ │ │ └── SplineBoundaryCondition.cs │ │ │ ├── LinearAlgebra │ │ │ │ ├── Complex │ │ │ │ │ ├── DenseMatrix.cs │ │ │ │ │ ├── DenseVector.cs │ │ │ │ │ ├── DiagonalMatrix.cs │ │ │ │ │ ├── Factorization │ │ │ │ │ │ ├── Cholesky.cs │ │ │ │ │ │ ├── DenseCholesky.cs │ │ │ │ │ │ ├── DenseEvd.cs │ │ │ │ │ │ ├── DenseGramSchmidt.cs │ │ │ │ │ │ ├── DenseLU.cs │ │ │ │ │ │ ├── DenseQR.cs │ │ │ │ │ │ ├── DenseSvd.cs │ │ │ │ │ │ ├── Evd.cs │ │ │ │ │ │ ├── GramSchmidt.cs │ │ │ │ │ │ ├── LU.cs │ │ │ │ │ │ ├── QR.cs │ │ │ │ │ │ ├── Svd.cs │ │ │ │ │ │ ├── UserCholesky.cs │ │ │ │ │ │ ├── UserEvd.cs │ │ │ │ │ │ ├── UserGramSchmidt.cs │ │ │ │ │ │ ├── UserLU.cs │ │ │ │ │ │ ├── UserQR.cs │ │ │ │ │ │ └── UserSvd.cs │ │ │ │ │ ├── IO │ │ │ │ │ │ ├── DelimitedReader.cs │ │ │ │ │ │ └── MatlabReader.cs │ │ │ │ │ ├── Matrix.cs │ │ │ │ │ ├── Solvers │ │ │ │ │ │ ├── Iterative │ │ │ │ │ │ │ ├── BiCgStab.cs │ │ │ │ │ │ │ ├── CompositeSolver.cs │ │ │ │ │ │ │ ├── GpBiCg.cs │ │ │ │ │ │ │ ├── MlkBiCgStab.cs │ │ │ │ │ │ │ └── TFQMR.cs │ │ │ │ │ │ ├── Iterator.cs │ │ │ │ │ │ ├── Preconditioners │ │ │ │ │ │ │ ├── Diagonal.cs │ │ │ │ │ │ │ ├── Ilutp.cs │ │ │ │ │ │ │ ├── IlutpElementSorter.cs │ │ │ │ │ │ │ ├── IncompleteLU.cs │ │ │ │ │ │ │ └── UnitPreconditioner.cs │ │ │ │ │ │ └── StopCriterium │ │ │ │ │ │ │ ├── DivergenceStopCriterium.cs │ │ │ │ │ │ │ ├── FailureStopCriterium.cs │ │ │ │ │ │ │ ├── IterationCountStopCriterium.cs │ │ │ │ │ │ │ └── ResidualStopCriterium.cs │ │ │ │ │ ├── SparseMatrix.cs │ │ │ │ │ ├── SparseVector.cs │ │ │ │ │ └── Vector.cs │ │ │ │ ├── Complex32 │ │ │ │ │ ├── DenseMatrix.cs │ │ │ │ │ ├── DenseVector.cs │ │ │ │ │ ├── DiagonalMatrix.cs │ │ │ │ │ ├── Factorization │ │ │ │ │ │ ├── Cholesky.cs │ │ │ │ │ │ ├── DenseCholesky.cs │ │ │ │ │ │ ├── DenseEvd.cs │ │ │ │ │ │ ├── DenseGramSchmidt.cs │ │ │ │ │ │ ├── DenseLU.cs │ │ │ │ │ │ ├── DenseQR.cs │ │ │ │ │ │ ├── DenseSvd.cs │ │ │ │ │ │ ├── Evd.cs │ │ │ │ │ │ ├── GramSchmidt.cs │ │ │ │ │ │ ├── LU.cs │ │ │ │ │ │ ├── QR.cs │ │ │ │ │ │ ├── Svd.cs │ │ │ │ │ │ ├── UserCholesky.cs │ │ │ │ │ │ ├── UserEvd.cs │ │ │ │ │ │ ├── UserGramSchmidt.cs │ │ │ │ │ │ ├── UserLU.cs │ │ │ │ │ │ ├── UserQR.cs │ │ │ │ │ │ └── UserSvd.cs │ │ │ │ │ ├── IO │ │ │ │ │ │ ├── DelimitedReader.cs │ │ │ │ │ │ └── MatlabReader.cs │ │ │ │ │ ├── Matrix.cs │ │ │ │ │ ├── Solvers │ │ │ │ │ │ ├── Iterative │ │ │ │ │ │ │ ├── BiCgStab.cs │ │ │ │ │ │ │ ├── CompositeSolver.cs │ │ │ │ │ │ │ ├── GpBiCg.cs │ │ │ │ │ │ │ ├── MlkBiCgStab.cs │ │ │ │ │ │ │ └── TFQMR.cs │ │ │ │ │ │ ├── Iterator.cs │ │ │ │ │ │ ├── Preconditioners │ │ │ │ │ │ │ ├── Diagonal.cs │ │ │ │ │ │ │ ├── Ilutp.cs │ │ │ │ │ │ │ ├── IlutpElementSorter.cs │ │ │ │ │ │ │ ├── IncompleteLU.cs │ │ │ │ │ │ │ └── UnitPreconditioner.cs │ │ │ │ │ │ └── StopCriterium │ │ │ │ │ │ │ ├── DivergenceStopCriterium.cs │ │ │ │ │ │ │ ├── FailureStopCriterium.cs │ │ │ │ │ │ │ ├── IterationCountStopCriterium.cs │ │ │ │ │ │ │ └── ResidualStopCriterium.cs │ │ │ │ │ ├── SparseMatrix.cs │ │ │ │ │ ├── SparseVector.cs │ │ │ │ │ └── Vector.cs │ │ │ │ ├── Double │ │ │ │ │ ├── DenseMatrix.cs │ │ │ │ │ ├── DenseVector.cs │ │ │ │ │ ├── DiagonalMatrix.cs │ │ │ │ │ ├── Factorization │ │ │ │ │ │ ├── Cholesky.cs │ │ │ │ │ │ ├── DenseCholesky.cs │ │ │ │ │ │ ├── DenseEvd.cs │ │ │ │ │ │ ├── DenseGramSchmidt.cs │ │ │ │ │ │ ├── DenseLU.cs │ │ │ │ │ │ ├── DenseQR.cs │ │ │ │ │ │ ├── DenseSvd.cs │ │ │ │ │ │ ├── Evd.cs │ │ │ │ │ │ ├── GramSchmidt.cs │ │ │ │ │ │ ├── LU.cs │ │ │ │ │ │ ├── QR.cs │ │ │ │ │ │ ├── Svd.cs │ │ │ │ │ │ ├── UserCholesky.cs │ │ │ │ │ │ ├── UserEvd.cs │ │ │ │ │ │ ├── UserGramSchmidt.cs │ │ │ │ │ │ ├── UserLU.cs │ │ │ │ │ │ ├── UserQR.cs │ │ │ │ │ │ └── UserSvd.cs │ │ │ │ │ ├── IO │ │ │ │ │ │ ├── DelimitedReader.cs │ │ │ │ │ │ └── MatlabReader.cs │ │ │ │ │ ├── Matrix.cs │ │ │ │ │ ├── Solvers │ │ │ │ │ │ ├── Iterative │ │ │ │ │ │ │ ├── BiCgStab.cs │ │ │ │ │ │ │ ├── CompositeSolver.cs │ │ │ │ │ │ │ ├── GpBiCg.cs │ │ │ │ │ │ │ ├── MlkBiCgStab.cs │ │ │ │ │ │ │ └── TFQMR.cs │ │ │ │ │ │ ├── Iterator.cs │ │ │ │ │ │ ├── Preconditioners │ │ │ │ │ │ │ ├── Diagonal.cs │ │ │ │ │ │ │ ├── Ilutp.cs │ │ │ │ │ │ │ ├── IlutpElementSorter.cs │ │ │ │ │ │ │ ├── IncompleteLU.cs │ │ │ │ │ │ │ └── UnitPreconditioner.cs │ │ │ │ │ │ └── StopCriterium │ │ │ │ │ │ │ ├── DivergenceStopCriterium.cs │ │ │ │ │ │ │ ├── FailureStopCriterium.cs │ │ │ │ │ │ │ ├── IterationCountStopCriterium.cs │ │ │ │ │ │ │ └── ResidualStopCriterium.cs │ │ │ │ │ ├── SparseMatrix.cs │ │ │ │ │ ├── SparseVector.cs │ │ │ │ │ └── Vector.cs │ │ │ │ ├── Generic │ │ │ │ │ ├── Common.cs │ │ │ │ │ ├── Factorization │ │ │ │ │ │ ├── Cholesky.cs │ │ │ │ │ │ ├── Evd.cs │ │ │ │ │ │ ├── ExtensionMethods.cs │ │ │ │ │ │ ├── GramSchmidt.cs │ │ │ │ │ │ ├── LU.cs │ │ │ │ │ │ ├── QR.cs │ │ │ │ │ │ └── Svd.cs │ │ │ │ │ ├── ISolver.cs │ │ │ │ │ ├── Matrix.Arithmetic.cs │ │ │ │ │ ├── Matrix.cs │ │ │ │ │ ├── Solvers │ │ │ │ │ │ ├── IIterativeSolver.cs │ │ │ │ │ │ ├── IIterativeSolverSetup.cs │ │ │ │ │ │ ├── IIterator.cs │ │ │ │ │ │ ├── Preconditioners │ │ │ │ │ │ │ └── IPreConditioner.cs │ │ │ │ │ │ ├── Status │ │ │ │ │ │ │ ├── CalculationCancelled.cs │ │ │ │ │ │ │ ├── CalculationConverged.cs │ │ │ │ │ │ │ ├── CalculationDiverged.cs │ │ │ │ │ │ │ ├── CalculationFailure.cs │ │ │ │ │ │ │ ├── CalculationIndetermined.cs │ │ │ │ │ │ │ ├── CalculationRunning.cs │ │ │ │ │ │ │ ├── CalculationStoppedWithoutConvergence.cs │ │ │ │ │ │ │ └── ICalculationStatus.cs │ │ │ │ │ │ └── StopCriterium │ │ │ │ │ │ │ ├── IIterationStopCriterium.cs │ │ │ │ │ │ │ └── StopLevel.cs │ │ │ │ │ └── Vector.cs │ │ │ │ ├── IO │ │ │ │ │ ├── DelimitedReader.cs │ │ │ │ │ ├── DelimitedWriter.cs │ │ │ │ │ ├── Matlab │ │ │ │ │ │ ├── ArrayClass.cs │ │ │ │ │ │ ├── ArrayFlags.cs │ │ │ │ │ │ ├── DataType.cs │ │ │ │ │ │ ├── MatlabFile.cs │ │ │ │ │ │ └── MatlabParser.cs │ │ │ │ │ ├── MatlabReader.cs │ │ │ │ │ ├── MatlabWriter.cs │ │ │ │ │ ├── MatrixReader.cs │ │ │ │ │ └── MatrixWriter.cs │ │ │ │ └── Single │ │ │ │ │ ├── DenseMatrix.cs │ │ │ │ │ ├── DenseVector.cs │ │ │ │ │ ├── DiagonalMatrix.cs │ │ │ │ │ ├── Factorization │ │ │ │ │ ├── Cholesky.cs │ │ │ │ │ ├── DenseCholesky.cs │ │ │ │ │ ├── DenseEvd.cs │ │ │ │ │ ├── DenseGramSchmidt.cs │ │ │ │ │ ├── DenseLU.cs │ │ │ │ │ ├── DenseQR.cs │ │ │ │ │ ├── DenseSvd.cs │ │ │ │ │ ├── Evd.cs │ │ │ │ │ ├── GramSchmidt.cs │ │ │ │ │ ├── LU.cs │ │ │ │ │ ├── QR.cs │ │ │ │ │ ├── Svd.cs │ │ │ │ │ ├── UserCholesky.cs │ │ │ │ │ ├── UserEvd.cs │ │ │ │ │ ├── UserGramSchmidt.cs │ │ │ │ │ ├── UserLU.cs │ │ │ │ │ ├── UserQR.cs │ │ │ │ │ └── UserSvd.cs │ │ │ │ │ ├── IO │ │ │ │ │ ├── DelimitedReader.cs │ │ │ │ │ └── MatlabReader.cs │ │ │ │ │ ├── Matrix.cs │ │ │ │ │ ├── Solvers │ │ │ │ │ ├── Iterative │ │ │ │ │ │ ├── BiCgStab.cs │ │ │ │ │ │ ├── CompositeSolver.cs │ │ │ │ │ │ ├── GpBiCg.cs │ │ │ │ │ │ ├── MlkBiCgStab.cs │ │ │ │ │ │ └── TFQMR.cs │ │ │ │ │ ├── Iterator.cs │ │ │ │ │ ├── Preconditioners │ │ │ │ │ │ ├── Diagonal.cs │ │ │ │ │ │ ├── Ilutp.cs │ │ │ │ │ │ ├── IlutpElementSorter.cs │ │ │ │ │ │ ├── IncompleteLU.cs │ │ │ │ │ │ └── UnitPreconditioner.cs │ │ │ │ │ └── StopCriterium │ │ │ │ │ │ ├── DivergenceStopCriterium.cs │ │ │ │ │ │ ├── FailureStopCriterium.cs │ │ │ │ │ │ ├── IterationCountStopCriterium.cs │ │ │ │ │ │ └── ResidualStopCriterium.cs │ │ │ │ │ ├── SparseMatrix.cs │ │ │ │ │ ├── SparseVector.cs │ │ │ │ │ └── Vector.cs │ │ │ ├── MathNet.Numerics.csproj │ │ │ ├── NumberTheory │ │ │ │ ├── IntegerTheory.Euclid.Big.cs │ │ │ │ ├── IntegerTheory.Euclid.cs │ │ │ │ └── IntegerTheory.cs │ │ │ ├── Permutation.cs │ │ │ ├── Precision.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ └── Resources.resx │ │ │ ├── Random │ │ │ │ ├── AbstractRandomNumberGenerator.cs │ │ │ │ ├── Mcg31m1.cs │ │ │ │ ├── Mcg59.cs │ │ │ │ ├── MersenneTwister.cs │ │ │ │ ├── Mrg32k3a.cs │ │ │ │ ├── Palf.cs │ │ │ │ ├── SystemCrypto.cs │ │ │ │ ├── SystemRandomExtensions.cs │ │ │ │ ├── WH1982.cs │ │ │ │ ├── WH2006.cs │ │ │ │ └── Xorshift.cs │ │ │ ├── Sampling │ │ │ │ ├── Sample.Chebyshev.cs │ │ │ │ ├── Sample.Equidistant.cs │ │ │ │ └── Sample.Random.cs │ │ │ ├── Settings.StyleCop │ │ │ ├── Sorting.cs │ │ │ ├── SpecialFunctions.cs │ │ │ ├── SpecialFunctions │ │ │ │ ├── Erf.cs │ │ │ │ ├── Factorial.cs │ │ │ │ ├── Gamma.cs │ │ │ │ └── Stability.cs │ │ │ ├── Statistics │ │ │ │ ├── Correlation.cs │ │ │ │ ├── DescriptiveStatistics.cs │ │ │ │ ├── Histogram.cs │ │ │ │ ├── MCMC │ │ │ │ │ ├── MCMCSampler.cs │ │ │ │ │ ├── MetropolisHastingsSampler.cs │ │ │ │ │ ├── MetropolisSampler.cs │ │ │ │ │ ├── RejectionSampler.cs │ │ │ │ │ └── UnivariateSliceSampler.cs │ │ │ │ ├── Percentile.cs │ │ │ │ └── Statistics.cs │ │ │ ├── Threading │ │ │ │ └── CommonParallel.cs │ │ │ ├── Trigonometry.cs │ │ │ └── Version.tt │ │ │ ├── Settings.StyleCop │ │ │ ├── Silverlight │ │ │ ├── MathNet.Numerics.SL.csproj │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── SerializableAttribute.cs │ │ │ ├── SilverlightUtilities.cs │ │ │ ├── Threading │ │ │ │ ├── AggregateException.cs │ │ │ │ ├── Parallel.cs │ │ │ │ ├── Task.cs │ │ │ │ ├── TaskOfT.cs │ │ │ │ └── ThreadQueue.cs │ │ │ └── Version.tt │ │ │ ├── SilverlightUnitTests │ │ │ ├── SilverlightUnitTests.Web │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Silverlight.js │ │ │ │ ├── SilverlightUnitTests.Web.csproj │ │ │ │ ├── SilverlightUnitTestsTestPage.aspx │ │ │ │ ├── SilverlightUnitTestsTestPage.html │ │ │ │ ├── Web.Debug.config │ │ │ │ ├── Web.Release.config │ │ │ │ └── Web.config │ │ │ ├── SilverlightUnitTests.sln │ │ │ └── SilverlightUnitTests │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── Properties │ │ │ │ ├── AppManifest.xml │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── SilverlightUnitTests.csproj │ │ │ ├── TraceAndTestImpact.testsettings │ │ │ └── UnitTests │ │ │ ├── ArgumentCheckContract.cs │ │ │ ├── AssertHelpers.cs │ │ │ ├── CombinatoricsTests │ │ │ └── CombinatoricsCountingTest.cs │ │ │ ├── ComplexTests │ │ │ ├── Complex32Test.TextHandling.cs │ │ │ ├── Complex32Test.cs │ │ │ ├── ComplexTest.TextHandling.cs │ │ │ └── ComplexTest.cs │ │ │ ├── DistributionTests │ │ │ ├── CommonDistributionTests.cs │ │ │ ├── Continuous │ │ │ │ ├── BetaTests.cs │ │ │ │ ├── CauchyTests.cs │ │ │ │ ├── ChiSquareTests.cs │ │ │ │ ├── ChiTests.cs │ │ │ │ ├── ContinuousUniformTests.cs │ │ │ │ ├── ErlangTests.cs │ │ │ │ ├── ExponentialTests.cs │ │ │ │ ├── FisherSnedecorTests.cs │ │ │ │ ├── GammaTests.cs │ │ │ │ ├── InverseGammaTests.cs │ │ │ │ ├── LaplaceTests.cs │ │ │ │ ├── LogNormalTests.cs │ │ │ │ ├── NormalTests.cs │ │ │ │ ├── ParetoTests.cs │ │ │ │ ├── RayleighTests.cs │ │ │ │ ├── StableTests.cs │ │ │ │ ├── StudentTTests.cs │ │ │ │ └── WeibullTests.cs │ │ │ ├── Discrete │ │ │ │ ├── BernoulliTests.cs │ │ │ │ ├── BinomialTests.cs │ │ │ │ ├── CategoricalTests.cs │ │ │ │ ├── ConwayMaxwellPoissonTests.cs │ │ │ │ ├── DiscreteUniformTests.cs │ │ │ │ ├── GeometricTests.cs │ │ │ │ ├── HypergeometricTests.cs │ │ │ │ ├── NegativeBinomialTests.cs │ │ │ │ ├── PoissonTests.cs │ │ │ │ └── ZipfTests.cs │ │ │ └── Multivariate │ │ │ │ ├── DirichletTests.cs │ │ │ │ ├── InverseWishartTests.cs │ │ │ │ ├── MatrixNormalTests.cs │ │ │ │ ├── MultinomialTests.cs │ │ │ │ ├── NormalGammaTests.cs │ │ │ │ └── WishartTests.cs │ │ │ ├── FunctionalHelpers.cs │ │ │ ├── IntegralTransformsTests │ │ │ ├── FourierTest.cs │ │ │ ├── HartleyTest.cs │ │ │ ├── InverseTransformTest.cs │ │ │ ├── MatchingNaiveTransformTest.cs │ │ │ └── ParsevalTheoremTest.cs │ │ │ ├── IntegrationTests │ │ │ └── IntegrationTest.cs │ │ │ ├── InterpolationTests │ │ │ ├── InterpolationFunctionalContract.cs │ │ │ ├── InterpolationFunctionalTest.cs │ │ │ ├── InterpolationInfrastructureContract.cs │ │ │ └── InterpolationInfrastuctureTest.cs │ │ │ ├── LinearAlgebraTests │ │ │ ├── Complex │ │ │ │ ├── DenseMatrixTests.cs │ │ │ │ ├── DenseVectorTest.TextHandling.cs │ │ │ │ ├── DenseVectorTests.cs │ │ │ │ ├── DiagonalMatrixTests.cs │ │ │ │ ├── Factorization │ │ │ │ │ ├── CholeskyTests.cs │ │ │ │ │ ├── EvdTests.cs │ │ │ │ │ ├── GramSchmidtTests.cs │ │ │ │ │ ├── LUTests.cs │ │ │ │ │ ├── QRTests.cs │ │ │ │ │ ├── SvdTests.cs │ │ │ │ │ ├── UserCholeskyTests.cs │ │ │ │ │ ├── UserEvdTests.cs │ │ │ │ │ ├── UserGramSchmidtTests.cs │ │ │ │ │ ├── UserLUTests.cs │ │ │ │ │ ├── UserQRTests.cs │ │ │ │ │ └── UserSvdTests.cs │ │ │ │ ├── IO │ │ │ │ │ ├── DelimitedReaderTests.cs │ │ │ │ │ ├── DelimitedWriterTests.cs │ │ │ │ │ ├── MatlabReaderTests.cs │ │ │ │ │ └── MatlabWriterTests.cs │ │ │ │ ├── MatrixLoader.cs │ │ │ │ ├── MatrixTests.Arithmetic.cs │ │ │ │ ├── MatrixTests.cs │ │ │ │ ├── Solvers │ │ │ │ │ ├── Iterative │ │ │ │ │ │ ├── BiCgStabTest.cs │ │ │ │ │ │ ├── GpBiCgTest.cs │ │ │ │ │ │ ├── MlkBiCgStabTest.cs │ │ │ │ │ │ └── TFQMRTest.cs │ │ │ │ │ ├── IteratorTest.cs │ │ │ │ │ ├── Preconditioners │ │ │ │ │ │ ├── DiagonalTest.cs │ │ │ │ │ │ ├── IluptElementSorterTest.cs │ │ │ │ │ │ ├── IlutpTest.cs │ │ │ │ │ │ ├── IncompleteLUTest.cs │ │ │ │ │ │ ├── PreConditionerTest.cs │ │ │ │ │ │ └── UnitPreconditionerTest.cs │ │ │ │ │ └── StopCriterium │ │ │ │ │ │ ├── DivergenceStopCriteriumTest.cs │ │ │ │ │ │ ├── FailureStopCriteriumTest.cs │ │ │ │ │ │ ├── IterationCountStopCriteriumTest.cs │ │ │ │ │ │ └── ResidualStopCriteriumTest.cs │ │ │ │ ├── SparseMatrixTests.cs │ │ │ │ ├── SparseVectorTest.TextHandling.cs │ │ │ │ ├── SparseVectorTest.cs │ │ │ │ ├── UserDefinedMatrixTests.cs │ │ │ │ ├── UserDefinedVectorTests.cs │ │ │ │ ├── VectorTests.Arithmetic.cs │ │ │ │ ├── VectorTests.Norm.cs │ │ │ │ └── VectorTests.cs │ │ │ ├── Complex32 │ │ │ │ ├── DenseMatrixTests.cs │ │ │ │ ├── DenseVectorTest.TextHandling.cs │ │ │ │ ├── DenseVectorTests.cs │ │ │ │ ├── DiagonalMatrixTests.cs │ │ │ │ ├── Factorization │ │ │ │ │ ├── CholeskyTests.cs │ │ │ │ │ ├── EvdTests.cs │ │ │ │ │ ├── GramSchmidtTests.cs │ │ │ │ │ ├── LUTests.cs │ │ │ │ │ ├── QRTests.cs │ │ │ │ │ ├── SvdTests.cs │ │ │ │ │ ├── UserCholeskyTests.cs │ │ │ │ │ ├── UserEvdTests.cs │ │ │ │ │ ├── UserGramSchmidtTests.cs │ │ │ │ │ ├── UserLUTests.cs │ │ │ │ │ ├── UserQRTests.cs │ │ │ │ │ └── UserSvdTests.cs │ │ │ │ ├── IO │ │ │ │ │ ├── DelimitedReaderTests.cs │ │ │ │ │ ├── DelimitedWriterTests.cs │ │ │ │ │ ├── MatlabReaderTests.cs │ │ │ │ │ └── MatlabWriterTests.cs │ │ │ │ ├── MatrixLoader.cs │ │ │ │ ├── MatrixTests.Arithmetic.cs │ │ │ │ ├── MatrixTests.cs │ │ │ │ ├── Solvers │ │ │ │ │ ├── Iterative │ │ │ │ │ │ ├── BiCgStabTest.cs │ │ │ │ │ │ ├── GpBiCgTest.cs │ │ │ │ │ │ ├── MlkBiCgStabTest.cs │ │ │ │ │ │ └── TFQMRTest.cs │ │ │ │ │ ├── IteratorTest.cs │ │ │ │ │ ├── Preconditioners │ │ │ │ │ │ ├── DiagonalTest.cs │ │ │ │ │ │ ├── IluptElementSorterTest.cs │ │ │ │ │ │ ├── IlutpTest.cs │ │ │ │ │ │ ├── IncompleteLUTest.cs │ │ │ │ │ │ ├── PreConditionerTest.cs │ │ │ │ │ │ └── UnitPreconditionerTest.cs │ │ │ │ │ └── StopCriterium │ │ │ │ │ │ ├── DivergenceStopCriteriumTest.cs │ │ │ │ │ │ ├── FailureStopCriteriumTest.cs │ │ │ │ │ │ ├── IterationCountStopCriteriumTest.cs │ │ │ │ │ │ └── ResidualStopCriteriumTest.cs │ │ │ │ ├── SparseMatrixTests.cs │ │ │ │ ├── SparseVectorTest.TextHandling.cs │ │ │ │ ├── SparseVectorTest.cs │ │ │ │ ├── UserDefinedMatrixTests.cs │ │ │ │ ├── UserDefinedVectorTests.cs │ │ │ │ ├── VectorTests.Arithmetic.cs │ │ │ │ ├── VectorTests.Norm.cs │ │ │ │ └── VectorTests.cs │ │ │ ├── Double │ │ │ │ ├── DenseMatrixTests.cs │ │ │ │ ├── DenseVectorTest.TextHandling.cs │ │ │ │ ├── DenseVectorTests.cs │ │ │ │ ├── DiagonalMatrixTests.cs │ │ │ │ ├── Factorization │ │ │ │ │ ├── CholeskyTests.cs │ │ │ │ │ ├── EvdTests.cs │ │ │ │ │ ├── GramSchmidtTests.cs │ │ │ │ │ ├── LUTests.cs │ │ │ │ │ ├── QRTests.cs │ │ │ │ │ ├── SvdTests.cs │ │ │ │ │ ├── UserCholeskyTests.cs │ │ │ │ │ ├── UserEvdTests.cs │ │ │ │ │ ├── UserGramSchmidtTests.cs │ │ │ │ │ ├── UserLUTests.cs │ │ │ │ │ ├── UserQRTests.cs │ │ │ │ │ └── UserSvdTests.cs │ │ │ │ ├── IO │ │ │ │ │ ├── DelimitedReaderTests.cs │ │ │ │ │ ├── DelimitedWriterTests.cs │ │ │ │ │ ├── MatlabReaderTests.cs │ │ │ │ │ └── MatlabWriterTests.cs │ │ │ │ ├── MatrixLoader.cs │ │ │ │ ├── MatrixTests.Arithmetic.cs │ │ │ │ ├── MatrixTests.cs │ │ │ │ ├── Solvers │ │ │ │ │ ├── Iterative │ │ │ │ │ │ ├── BiCgStabTest.cs │ │ │ │ │ │ ├── GpBiCgTest.cs │ │ │ │ │ │ ├── MlkBiCgStabTest.cs │ │ │ │ │ │ └── TFQMRTest.cs │ │ │ │ │ ├── IteratorTest.cs │ │ │ │ │ ├── Preconditioners │ │ │ │ │ │ ├── DiagonalTest.cs │ │ │ │ │ │ ├── IluptElementSorterTest.cs │ │ │ │ │ │ ├── IlutpTest.cs │ │ │ │ │ │ ├── IncompleteLUTest.cs │ │ │ │ │ │ ├── PreConditionerTest.cs │ │ │ │ │ │ └── UnitPreconditionerTest.cs │ │ │ │ │ └── StopCriterium │ │ │ │ │ │ ├── DivergenceStopCriteriumTest.cs │ │ │ │ │ │ ├── FailureStopCriteriumTest.cs │ │ │ │ │ │ ├── IterationCountStopCriteriumTest.cs │ │ │ │ │ │ └── ResidualStopCriteriumTest.cs │ │ │ │ ├── SparseMatrixTests.cs │ │ │ │ ├── SparseVectorTest.TextHandling.cs │ │ │ │ ├── SparseVectorTest.cs │ │ │ │ ├── UserDefinedMatrixTests.cs │ │ │ │ ├── UserDefinedVectorTests.cs │ │ │ │ ├── VectorTests.Arithmetic.cs │ │ │ │ ├── VectorTests.Norm.cs │ │ │ │ └── VectorTests.cs │ │ │ └── Single │ │ │ │ ├── DenseMatrixTests.cs │ │ │ │ ├── DenseVectorTest.TextHandling.cs │ │ │ │ ├── DenseVectorTests.cs │ │ │ │ ├── DiagonalMatrixTests.cs │ │ │ │ ├── Factorization │ │ │ │ ├── CholeskyTests.cs │ │ │ │ ├── EvdTests.cs │ │ │ │ ├── GramSchmidtTests.cs │ │ │ │ ├── LUTests.cs │ │ │ │ ├── QRTests.cs │ │ │ │ ├── SvdTests.cs │ │ │ │ ├── UserCholeskyTests.cs │ │ │ │ ├── UserEvdTests.cs │ │ │ │ ├── UserGramSchmidtTests.cs │ │ │ │ ├── UserLUTests.cs │ │ │ │ ├── UserQRTests.cs │ │ │ │ └── UserSvdTests.cs │ │ │ │ ├── IO │ │ │ │ ├── DelimitedReaderTests.cs │ │ │ │ ├── DelimitedWriterTests.cs │ │ │ │ ├── MatlabReaderTests.cs │ │ │ │ └── MatlabWriterTests.cs │ │ │ │ ├── MatrixLoader.cs │ │ │ │ ├── MatrixTests.Arithmetic.cs │ │ │ │ ├── MatrixTests.cs │ │ │ │ ├── Solvers │ │ │ │ ├── Iterative │ │ │ │ │ ├── BiCgStabTest.cs │ │ │ │ │ ├── GpBiCgTest.cs │ │ │ │ │ ├── MlkBiCgStabTest.cs │ │ │ │ │ └── TFQMRTest.cs │ │ │ │ ├── IteratorTest.cs │ │ │ │ ├── Preconditioners │ │ │ │ │ ├── DiagonalTest.cs │ │ │ │ │ ├── IluptElementSorterTest.cs │ │ │ │ │ ├── IlutpTest.cs │ │ │ │ │ ├── IncompleteLUTest.cs │ │ │ │ │ ├── PreConditionerTest.cs │ │ │ │ │ └── UnitPreconditionerTest.cs │ │ │ │ └── StopCriterium │ │ │ │ │ ├── DivergenceStopCriteriumTest.cs │ │ │ │ │ ├── FailureStopCriteriumTest.cs │ │ │ │ │ ├── IterationCountStopCriteriumTest.cs │ │ │ │ │ └── ResidualStopCriteriumTest.cs │ │ │ │ ├── SparseMatrixTests.cs │ │ │ │ ├── SparseVectorTest.TextHandling.cs │ │ │ │ ├── SparseVectorTest.cs │ │ │ │ ├── UserDefinedMatrixTests.cs │ │ │ │ ├── UserDefinedVectorTests.cs │ │ │ │ ├── VectorTests.Arithmetic.cs │ │ │ │ ├── VectorTests.Norm.cs │ │ │ │ └── VectorTests.cs │ │ │ ├── NumberTheoryTests │ │ │ ├── GcdRelatedTest.cs │ │ │ ├── GcdRelatedTestBigInteger.cs │ │ │ └── IntegerTheoryTest.cs │ │ │ ├── PermutationTest.cs │ │ │ ├── PrecisionTest.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── Random │ │ │ ├── Mcg31m1Tests.cs │ │ │ ├── Mcg59Tests.cs │ │ │ ├── MersenneTwisterTests.cs │ │ │ ├── Mrg32k3aTests.cs │ │ │ ├── PalfTests.cs │ │ │ ├── RandomTests.cs │ │ │ ├── SystemCryptoTests.cs │ │ │ ├── SystemRandomExtensionTests.cs │ │ │ ├── WH1982Tests.cs │ │ │ ├── WH2006Tests.cs │ │ │ └── XorshiftTests.cs │ │ │ ├── SortingTests.cs │ │ │ ├── SpecialFunctionsTests │ │ │ ├── ErfTests.cs │ │ │ ├── FactorialTest.cs │ │ │ ├── GammaTests.cs │ │ │ └── SpecialFunctionsTests.cs │ │ │ ├── StatisticsTests │ │ │ ├── CorrelationTests.cs │ │ │ ├── CorrelationTests.cs.orig │ │ │ ├── DescriptiveStatisticsTests.cs │ │ │ ├── HistogramTests.cs │ │ │ ├── MCMCTests │ │ │ │ ├── MetropolisHastingsSamplerTests.cs │ │ │ │ ├── MetropolisSamplerTests.cs │ │ │ │ ├── RejectionSamplerTests.cs │ │ │ │ └── UnivariateSliceSamplerTests.cs │ │ │ ├── PercentileTests.cs │ │ │ ├── StatTestData.cs │ │ │ └── StatisticsTests.cs │ │ │ ├── TrigonometryTest.cs │ │ │ └── UnitTests.csproj │ └── NetDXF │ │ ├── BuildProcessTemplates │ │ ├── DefaultTemplate.11.1.xaml │ │ ├── LabDefaultTemplate.11.xaml │ │ └── UpgradeTemplate.xaml │ │ ├── TestDxfDocument │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── TestDxfDocument.csproj │ │ ├── image.jpg │ │ └── sample.dxf │ │ ├── doc │ │ ├── Changelog.txt │ │ ├── License.txt │ │ └── netDxf Documentation.chm │ │ ├── netDxf.sln │ │ └── netDxf │ │ ├── AciColor.cs │ │ ├── Blocks │ │ ├── Block.cs │ │ ├── BlockEnd.cs │ │ └── BlockTypeFlags.cs │ │ ├── CodeValuePair.cs │ │ ├── DrawingUnits.cs │ │ ├── DxfDocument.cs │ │ ├── DxfException.cs │ │ ├── DxfObject.cs │ │ ├── DxfObjectCode.cs │ │ ├── DxfReader.cs │ │ ├── DxfWriter.cs │ │ ├── Entities │ │ ├── AlignedDimension.cs │ │ ├── Angular2LineDimension.cs │ │ ├── Angular3PointDimension.cs │ │ ├── Arc.cs │ │ ├── Attribute.cs │ │ ├── AttributeDefinition.cs │ │ ├── Circle.cs │ │ ├── DiametricDimension.cs │ │ ├── Dimension.cs │ │ ├── DimensionType.cs │ │ ├── Ellipse.cs │ │ ├── EndSequence.cs │ │ ├── EntityObject.cs │ │ ├── Face3d.cs │ │ ├── Hatch.cs │ │ ├── HatchBoundaryPath.cs │ │ ├── HatchGradientPattern.cs │ │ ├── HatchPattern.cs │ │ ├── HatchPatternLineDefinition.cs │ │ ├── Image.cs │ │ ├── ImageClippingBoundary.cs │ │ ├── ImageDisplayFlags.cs │ │ ├── Insert.cs │ │ ├── Line.cs │ │ ├── LinearDimension.cs │ │ ├── LwPolyline.cs │ │ ├── LwPolylineVertex.cs │ │ ├── MLine.cs │ │ ├── MLineVertex.cs │ │ ├── MText.cs │ │ ├── MTextAttachmentPoint.cs │ │ ├── MTextFormattingOptions.cs │ │ ├── MTextLineSpacingStyle.cs │ │ ├── OrdinateDimension.cs │ │ ├── OrdinateDimensionAxis.cs │ │ ├── Point.cs │ │ ├── PolyfaceMesh.cs │ │ ├── PolyfaceMeshFace.cs │ │ ├── PolyfaceMeshVertex.cs │ │ ├── Polyline.cs │ │ ├── PolylineSmoothType.cs │ │ ├── PolylineTypeFlags.cs │ │ ├── PolylineVertex.cs │ │ ├── RadialDimension.cs │ │ ├── Solid.cs │ │ ├── Spline.cs │ │ ├── SplineTypeFlags.cs │ │ ├── SplineVertex.cs │ │ ├── Text.cs │ │ ├── TextAligment.cs │ │ ├── Vertex.cs │ │ └── VertexTypeFlags.cs │ │ ├── Header │ │ ├── AttMode.cs │ │ ├── DxfVersion.cs │ │ ├── HeaderVariable.cs │ │ ├── HeaderVariableCode.cs │ │ ├── HeaderVariables.cs │ │ └── PointShape.cs │ │ ├── Lineweight.cs │ │ ├── MathHelper.cs │ │ ├── Matrix3.cs │ │ ├── NetDxf.SL.csproj │ │ ├── NetDxf.csproj │ │ ├── Objects │ │ ├── DictionaryObject.cs │ │ ├── Group.cs │ │ ├── ImageDef.cs │ │ ├── ImageDefReactor.cs │ │ ├── MLineStyle.cs │ │ ├── MLineStyleElement.cs │ │ └── RasterVariables.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── SLHacks.cs │ │ ├── StringCode.cs │ │ ├── StringEnum.cs │ │ ├── SubclassMarker.cs │ │ ├── Symbols.cs │ │ ├── Tables │ │ ├── ApplicationRegistry.cs │ │ ├── BlockRecord.cs │ │ ├── DimensionStyle.cs │ │ ├── Layer.cs │ │ ├── LineType.cs │ │ ├── TableObject.cs │ │ ├── TextStyle.cs │ │ ├── View.cs │ │ └── ViewPort.cs │ │ ├── Vector2.cs │ │ ├── Vector3.cs │ │ ├── XData.cs │ │ ├── XDataCode.cs │ │ └── XDataRecord.cs └── structuralAnalysis │ ├── ClassLibrary1 │ ├── CustomComponents │ │ └── ConnectivityComponent.cs │ ├── CustomParameters │ │ └── StructureParam.cs │ ├── CustomTypes │ │ └── StructureType.cs │ ├── GrasshopperImplementation.csproj │ └── Properties │ │ └── AssemblyInfo.cs │ ├── CustomComponents │ ├── Class1.cs │ ├── CustomComponents.csproj │ └── Properties │ │ └── AssemblyInfo.cs │ ├── CustomTypes │ ├── CustomTypes.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── StructureType.cs │ ├── connector │ ├── Model │ │ ├── BaseDesign.cs │ │ ├── ComputedStructure.cs │ │ ├── ConnectivityComponent.cs │ │ ├── DOF.cs │ │ ├── ISection.cs │ │ ├── IVariable.cs │ │ ├── LoadCase.cs │ │ ├── Material.cs │ │ ├── Member.cs │ │ ├── Node.cs │ │ ├── Structure.cs │ │ └── TrussAnalysis.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── StructureEngine.csproj │ └── structureFIT Grasshopper.sln └── temp └── StormCloudAnalysis ├── Attributes └── InterOptComponentAttributes.cs ├── BoolVisConverter.cs ├── Components ├── AnalysisComponent.cs ├── ConnectivityComponent.cs ├── Display.cs ├── InterOptComponent.cs ├── InterOptComponentStructure.cs ├── LoadComponent.cs ├── MaterialComponent.cs ├── SectionComponent.cs └── SupportComponent.cs ├── DesignControl.xaml ├── DesignControl.xaml.cs ├── Evolutionary ├── DVariableGH.cs ├── Design.cs ├── DesignVar.cs ├── EvoParams.cs ├── EvolutionaryUtilities.cs ├── GH_VarNumberSlider.cs ├── IDesign.cs ├── IDivBooster.cs ├── IVariable.cs ├── ParDivBooster.cs └── Utilities.cs ├── Parameters ├── DVariableParameter.cs ├── MaterialParameter.cs └── StructureParameter.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── Resources ├── gen_icon.png ├── gen_icon_small.png └── wrench.png ├── StormCloud.csproj ├── StormCloudAnalysis.sln ├── StormCloudInfo.cs ├── StormCloudWindow.xaml ├── StormCloudWindow.xaml.cs ├── Test Files └── GraphicStatics_Arch_Stormcloud-test.gh ├── Test └── TestConnectivyComponent.cs ├── Testing ├── App.config ├── Properties │ └── AssemblyInfo.cs ├── TestComponents.cs ├── TestConnectivityComponent.cs └── Testing.csproj ├── Types ├── MaterialType.cs ├── SectionType.cs └── StructureType.cs ├── View └── Structure3D.cs ├── ViewModel ├── BaseVM.cs ├── CurrentGeneration.cs ├── DesignToolVM.cs ├── DesignVM.cs ├── EvoParamsVM.cs ├── RenderingSettings.cs ├── RhinoHelixUtilities.cs └── StructureView.cs ├── app.config └── csvWriter.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/.gitignore -------------------------------------------------------------------------------- /AllProjects.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/AllProjects.sln -------------------------------------------------------------------------------- /Capture/Capture.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Capture/Capture.csproj -------------------------------------------------------------------------------- /Capture/Capture.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Capture/Capture.csproj.user -------------------------------------------------------------------------------- /Capture/CaptureComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Capture/CaptureComponent.cs -------------------------------------------------------------------------------- /Capture/CaptureComponentAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Capture/CaptureComponentAttributes.cs -------------------------------------------------------------------------------- /Capture/CaptureInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Capture/CaptureInfo.cs -------------------------------------------------------------------------------- /Capture/CaptureUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Capture/CaptureUtilities.cs -------------------------------------------------------------------------------- /Capture/Diversity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Capture/Diversity.cs -------------------------------------------------------------------------------- /Capture/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Capture/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Capture/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Capture/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Capture/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Capture/Properties/Resources.resx -------------------------------------------------------------------------------- /Capture/Resources/Capture1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Capture/Resources/Capture1.png -------------------------------------------------------------------------------- /Capture/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Capture/app.config -------------------------------------------------------------------------------- /Capture/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Capture/packages.config -------------------------------------------------------------------------------- /Cluster/Cluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Cluster/Cluster.cs -------------------------------------------------------------------------------- /Cluster/Cluster.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Cluster/Cluster.csproj -------------------------------------------------------------------------------- /Cluster/ClusterComponentAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Cluster/ClusterComponentAttributes.cs -------------------------------------------------------------------------------- /Cluster/ClusterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Cluster/ClusterInfo.cs -------------------------------------------------------------------------------- /Cluster/MyComponent1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Cluster/MyComponent1.cs -------------------------------------------------------------------------------- /Cluster/MyProject1Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Cluster/MyProject1Info.cs -------------------------------------------------------------------------------- /Cluster/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Cluster/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Cluster/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Cluster/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Cluster/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Cluster/Properties/Resources.resx -------------------------------------------------------------------------------- /Cluster/Resources/cluster1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Cluster/Resources/cluster1.png -------------------------------------------------------------------------------- /Cluster/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Cluster/app.config -------------------------------------------------------------------------------- /Cluster/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Cluster/packages.config -------------------------------------------------------------------------------- /Contort/Contort.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Contort/Contort.csproj -------------------------------------------------------------------------------- /Contort/ContortComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Contort/ContortComponent.cs -------------------------------------------------------------------------------- /Contort/ContortInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Contort/ContortInfo.cs -------------------------------------------------------------------------------- /Contort/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Contort/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Contort/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Contort/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Contort/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Contort/Properties/Resources.resx -------------------------------------------------------------------------------- /Contort/Resources/Contort1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Contort/Resources/Contort1.png -------------------------------------------------------------------------------- /Contort/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Contort/app.config -------------------------------------------------------------------------------- /Contort/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Contort/packages.config -------------------------------------------------------------------------------- /DSE Build 1.5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSE Build 1.5.zip -------------------------------------------------------------------------------- /DSECommon/ConsoleTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSECommon/ConsoleTest/App.config -------------------------------------------------------------------------------- /DSECommon/ConsoleTest/DSECommonTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSECommon/ConsoleTest/DSECommonTest.csproj -------------------------------------------------------------------------------- /DSECommon/ConsoleTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSECommon/ConsoleTest/Program.cs -------------------------------------------------------------------------------- /DSECommon/ConsoleTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSECommon/ConsoleTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DSECommon/ConsoleTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSECommon/ConsoleTest/packages.config -------------------------------------------------------------------------------- /DSECommon/DSECommon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSECommon/DSECommon.csproj -------------------------------------------------------------------------------- /DSECommon/DSEVariable.CS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSECommon/DSEVariable.CS -------------------------------------------------------------------------------- /DSECommon/GHUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSECommon/GHUtilities.cs -------------------------------------------------------------------------------- /DSECommon/MathUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSECommon/MathUtilities.cs -------------------------------------------------------------------------------- /DSECommon/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSECommon/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DSECommon/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSECommon/packages.config -------------------------------------------------------------------------------- /DSOpt/DSOpt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/DSOpt.csproj -------------------------------------------------------------------------------- /DSOpt/DSOptimization/DSOptimizerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/DSOptimization/DSOptimizerComponent.cs -------------------------------------------------------------------------------- /DSOpt/DSOptimization/Design.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/DSOptimization/Design.cs -------------------------------------------------------------------------------- /DSOpt/DSOptimization/IOptimizeToolVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/DSOptimization/IOptimizeToolVM.cs -------------------------------------------------------------------------------- /DSOpt/DSOptimization/Model/Constraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/DSOptimization/Model/Constraint.cs -------------------------------------------------------------------------------- /DSOpt/DSOptimization/Model/CurveVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/DSOptimization/Model/CurveVariable.cs -------------------------------------------------------------------------------- /DSOpt/DSOptimization/Model/DesignCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/DSOptimization/Model/DesignCurve.cs -------------------------------------------------------------------------------- /DSOpt/DSOptimization/Model/DesignSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/DSOptimization/Model/DesignSurface.cs -------------------------------------------------------------------------------- /DSOpt/DSOptimization/Model/GeoVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/DSOptimization/Model/GeoVariable.cs -------------------------------------------------------------------------------- /DSOpt/DSOptimization/Model/IDesignGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/DSOptimization/Model/IDesignGeometry.cs -------------------------------------------------------------------------------- /DSOpt/DSOptimization/Model/IVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/DSOptimization/Model/IVariable.cs -------------------------------------------------------------------------------- /DSOpt/DSOptimization/Model/SliderVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/DSOptimization/Model/SliderVariable.cs -------------------------------------------------------------------------------- /DSOpt/DSOptimization/Model/SurfaceVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/DSOptimization/Model/SurfaceVariable.cs -------------------------------------------------------------------------------- /DSOpt/DSOptimization/View/BaseControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/DSOptimization/View/BaseControl.cs -------------------------------------------------------------------------------- /DSOpt/DSOptimization/View/ConstraintControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/DSOptimization/View/ConstraintControl.xaml -------------------------------------------------------------------------------- /DSOpt/DSOptimization/View/DSOptimizeWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/DSOptimization/View/DSOptimizeWindow.xaml -------------------------------------------------------------------------------- /DSOpt/DSOptimization/View/VariableControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/DSOptimization/View/VariableControl.xaml -------------------------------------------------------------------------------- /DSOpt/DSOptimization/ViewModel/BaseVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/DSOptimization/ViewModel/BaseVM.cs -------------------------------------------------------------------------------- /DSOpt/DSOptimization/ViewModel/ConstVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/DSOptimization/ViewModel/ConstVM.cs -------------------------------------------------------------------------------- /DSOpt/DSOptimization/ViewModel/GroupVarVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/DSOptimization/ViewModel/GroupVarVM.cs -------------------------------------------------------------------------------- /DSOpt/DSOptimization/ViewModel/IViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/DSOptimization/ViewModel/IViewModel.cs -------------------------------------------------------------------------------- /DSOpt/DSOptimization/ViewModel/VarVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/DSOptimization/ViewModel/VarVM.cs -------------------------------------------------------------------------------- /DSOpt/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DSOpt/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /DSOpt/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/Properties/Resources.resx -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/DSModel/Constraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/DSModel/Constraint.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/DSModel/CurveVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/DSModel/CurveVariable.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/DSModel/DesignCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/DSModel/DesignCurve.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/DSModel/DesignSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/DSModel/DesignSurface.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/DSModel/GeoVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/DSModel/GeoVariable.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/DSModel/IDesignGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/DSModel/IDesignGeometry.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/DSModel/IVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/DSModel/IVariable.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/DSModel/SliderVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/DSModel/SliderVariable.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/DSModel/SurfaceVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/DSModel/SurfaceVariable.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/DSOptInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/DSOptInfo.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/DSView/BaseControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/DSView/BaseControl.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/DSView/DSOptimizeWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/DSView/DSOptimizeWindow.xaml -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/DSView/VariableControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/DSView/VariableControl.xaml -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/DSViewModel/BaseVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/DSViewModel/BaseVM.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/DSViewModel/ConstVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/DSViewModel/ConstVM.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/DSViewModel/GroupVarVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/DSViewModel/GroupVarVM.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/DSViewModel/IViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/DSViewModel/IViewModel.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/DSViewModel/VarVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/DSViewModel/VarVM.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/Integration/Design.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/Integration/Design.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/Integration/IDesign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/Integration/IDesign.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/Model/RadicalOptimizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/Model/RadicalOptimizer.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/Model/Sampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/Model/Sampler.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/Model/csvWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/Model/csvWriter.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/View/GraphControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/View/GraphControl.xaml -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/View/GraphControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/View/GraphControl.xaml.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/View/RadicalWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/View/RadicalWindow.xaml -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/View/RadicalWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/View/RadicalWindow.xaml.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/View/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/View/packages.config -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/ViewModel/GraphVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/ViewModel/GraphVM.cs -------------------------------------------------------------------------------- /DSOpt/RadicalFolder/ViewModel/RadicalVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/RadicalFolder/ViewModel/RadicalVM.cs -------------------------------------------------------------------------------- /DSOpt/Resources/DSOpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/Resources/DSOpt.png -------------------------------------------------------------------------------- /DSOpt/Resources/DSOpt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/Resources/DSOpt2.png -------------------------------------------------------------------------------- /DSOpt/StepperFolder/Model/StepperInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/StepperFolder/Model/StepperInfo.cs -------------------------------------------------------------------------------- /DSOpt/StepperFolder/Model/StepperOptimizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/StepperFolder/Model/StepperOptimizer.cs -------------------------------------------------------------------------------- /DSOpt/StepperFolder/View/DataControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/StepperFolder/View/DataControl.xaml -------------------------------------------------------------------------------- /DSOpt/StepperFolder/View/DataControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/StepperFolder/View/DataControl.xaml.cs -------------------------------------------------------------------------------- /DSOpt/StepperFolder/View/SettingsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/StepperFolder/View/SettingsControl.xaml -------------------------------------------------------------------------------- /DSOpt/StepperFolder/View/SettingsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/StepperFolder/View/SettingsControl.xaml.cs -------------------------------------------------------------------------------- /DSOpt/StepperFolder/View/StepperWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/StepperFolder/View/StepperWindow.xaml -------------------------------------------------------------------------------- /DSOpt/StepperFolder/View/StepperWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/StepperFolder/View/StepperWindow.xaml.cs -------------------------------------------------------------------------------- /DSOpt/StepperFolder/ViewModel/ObjectiveVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/StepperFolder/ViewModel/ObjectiveVM.cs -------------------------------------------------------------------------------- /DSOpt/StepperFolder/ViewModel/StepperGraphVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/StepperFolder/ViewModel/StepperGraphVM.cs -------------------------------------------------------------------------------- /DSOpt/StepperFolder/ViewModel/StepperVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/StepperFolder/ViewModel/StepperVM.cs -------------------------------------------------------------------------------- /DSOpt/StepperFolder/x32/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/StepperFolder/x32/COPYING -------------------------------------------------------------------------------- /DSOpt/StepperFolder/x32/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/StepperFolder/x32/COPYRIGHT -------------------------------------------------------------------------------- /DSOpt/StepperFolder/x32/libnlopt-0.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/StepperFolder/x32/libnlopt-0.def -------------------------------------------------------------------------------- /DSOpt/StepperFolder/x32/libnlopt-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/StepperFolder/x32/libnlopt-0.dll -------------------------------------------------------------------------------- /DSOpt/StepperFolder/x32/nlopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/StepperFolder/x32/nlopt.h -------------------------------------------------------------------------------- /DSOpt/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/app.config -------------------------------------------------------------------------------- /DSOpt/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DSOpt/packages.config -------------------------------------------------------------------------------- /DesignLogger/DesignLogger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignLogger/DesignLogger.csproj -------------------------------------------------------------------------------- /DesignLogger/DesignLoggerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignLogger/DesignLoggerComponent.cs -------------------------------------------------------------------------------- /DesignLogger/DesignLoggerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignLogger/DesignLoggerInfo.cs -------------------------------------------------------------------------------- /DesignLogger/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignLogger/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DesignLogger/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignLogger/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /DesignLogger/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignLogger/Properties/Resources.resx -------------------------------------------------------------------------------- /DesignLogger/Resources/Logger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignLogger/Resources/Logger.png -------------------------------------------------------------------------------- /DesignLogger/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignLogger/packages.config -------------------------------------------------------------------------------- /DesignTool/Analysis/BaseTrussAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Analysis/BaseTrussAnalysis.cs -------------------------------------------------------------------------------- /DesignTool/Analysis/BraninTestFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Analysis/BraninTestFunction.cs -------------------------------------------------------------------------------- /DesignTool/Analysis/EquivFrameAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Analysis/EquivFrameAnalysis.cs -------------------------------------------------------------------------------- /DesignTool/Analysis/GraphicStatics/PointLoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Analysis/GraphicStatics/PointLoad.cs -------------------------------------------------------------------------------- /DesignTool/Analysis/IAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Analysis/IAnalysis.cs -------------------------------------------------------------------------------- /DesignTool/Analysis/RegAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Analysis/RegAnalysis.cs -------------------------------------------------------------------------------- /DesignTool/Analysis/Results.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Analysis/Results.cs -------------------------------------------------------------------------------- /DesignTool/Analysis/TrussAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Analysis/TrussAnalysis.cs -------------------------------------------------------------------------------- /DesignTool/Analysis/TrussDispAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Analysis/TrussDispAnalysis.cs -------------------------------------------------------------------------------- /DesignTool/ClassDiagram1.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/ClassDiagram1.cd -------------------------------------------------------------------------------- /DesignTool/EvoConsole/EvoConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/EvoConsole/EvoConsole.csproj -------------------------------------------------------------------------------- /DesignTool/EvoConsole/EvoConsole.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/EvoConsole/EvoConsole.sln -------------------------------------------------------------------------------- /DesignTool/EvoConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/EvoConsole/Program.cs -------------------------------------------------------------------------------- /DesignTool/EvoConsole/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/EvoConsole/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DesignTool/Evolutionary/DiversityBooster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Evolutionary/DiversityBooster.cs -------------------------------------------------------------------------------- /DesignTool/Evolutionary/EvoParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Evolutionary/EvoParams.cs -------------------------------------------------------------------------------- /DesignTool/Evolutionary/GramDivBooster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Evolutionary/GramDivBooster.cs -------------------------------------------------------------------------------- /DesignTool/Evolutionary/IDivBooster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Evolutionary/IDivBooster.cs -------------------------------------------------------------------------------- /DesignTool/Evolutionary/ParDivBooster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Evolutionary/ParDivBooster.cs -------------------------------------------------------------------------------- /DesignTool/Evolutionary/PopulationGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Evolutionary/PopulationGenerator.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Airport/AirportAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Airport/AirportAnalysis.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Airport/AirportGrammar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Airport/AirportGrammar.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Airport/AirportShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Airport/AirportShape.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Airport/AirportShapeState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Airport/AirportShapeState.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Airport/Rules/Rule001.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Airport/Rules/Rule001.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Airport/Rules/Rule002.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Airport/Rules/Rule002.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Airport/Rules/Rule003.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Airport/Rules/Rule003.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Airport/Rules/Rule004.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Airport/Rules/Rule004.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Airport/Rules/Rule005.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Airport/Rules/Rule005.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Airport/Rules/RuleA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Airport/Rules/RuleA.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/BaseGrammar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/BaseGrammar.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/BaseRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/BaseRule.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/BaseShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/BaseShape.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/BridgeAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/BridgeAnalysis.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/BridgeGrammar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/BridgeGrammar.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/BridgeShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/BridgeShape.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/BridgeShapeState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/BridgeShapeState.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/Rules/Rule001.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/Rules/Rule001.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/Rules/Rule002.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/Rules/Rule002.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/Rules/Rule003.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/Rules/Rule003.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/Rules/Rule004.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/Rules/Rule004.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/Rules/Rule005.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/Rules/Rule005.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/Rules/Rule006.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/Rules/Rule006.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/Rules/Rule007.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/Rules/Rule007.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/Rules/Rule008.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/Rules/Rule008.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/Rules/Rule009.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/Rules/Rule009.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/Rules/Rule010.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/Rules/Rule010.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/Rules/Rule011.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/Rules/Rule011.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/Rules/Rule012.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/Rules/Rule012.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/Rules/Rule013.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/Rules/Rule013.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/Rules/Rule014.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/Rules/Rule014.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/Rules/Rule015.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/Rules/Rule015.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/Rules/Rule016.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/Rules/Rule016.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/Rules/Rule017.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/Rules/Rule017.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/Rules/RuleA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/Rules/RuleA.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/Rules/RuleB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/Rules/RuleB.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/Rules/RuleC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/Rules/RuleC.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Bridge/Rules/RuleD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Bridge/Rules/RuleD.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/DoubleParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/DoubleParameter.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/ElementGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/ElementGroup.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/EnumParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/EnumParameter.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/GrammarSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/GrammarSetup.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/IElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/IElement.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/IElementGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/IElementGroup.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/IGrammar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/IGrammar.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/IGrammarAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/IGrammarAnalysis.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/IRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/IRule.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/IRuleParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/IRuleParameter.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/IShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/IShape.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/IShapeState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/IShapeState.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/IntParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/IntParameter.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/RandomComputation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/RandomComputation.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/RuleSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/RuleSet.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/ShapeArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/ShapeArea.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/ShapeComputation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/ShapeComputation.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/ShapeHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/ShapeHistory.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/ShapeLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/ShapeLine.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/ShapePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/ShapePoint.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/ShapePointLoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/ShapePointLoad.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Simple/Rules/Rule001.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Simple/Rules/Rule001.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Simple/Rules/Rule002.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Simple/Rules/Rule002.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Simple/Rules/Rule003.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Simple/Rules/Rule003.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Simple/Rules/RuleA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Simple/Rules/RuleA.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Simple/SimpleAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Simple/SimpleAnalysis.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Simple/SimpleGrammar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Simple/SimpleGrammar.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Simple/SimpleShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Simple/SimpleShape.cs -------------------------------------------------------------------------------- /DesignTool/Grammar/Simple/SimpleShapeState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Grammar/Simple/SimpleShapeState.cs -------------------------------------------------------------------------------- /DesignTool/Logging/Generation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Logging/Generation.cs -------------------------------------------------------------------------------- /DesignTool/Logging/HttpWebRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Logging/HttpWebRequestBuilder.cs -------------------------------------------------------------------------------- /DesignTool/Logging/LoadCaseSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Logging/LoadCaseSerializer.cs -------------------------------------------------------------------------------- /DesignTool/Logging/MemberSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Logging/MemberSerializer.cs -------------------------------------------------------------------------------- /DesignTool/Logging/NodeSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Logging/NodeSerializer.cs -------------------------------------------------------------------------------- /DesignTool/Logging/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Logging/Session.cs -------------------------------------------------------------------------------- /DesignTool/Logging/StructureSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Logging/StructureSerializer.cs -------------------------------------------------------------------------------- /DesignTool/MachineLearning/ErrorMeasures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/MachineLearning/ErrorMeasures.cs -------------------------------------------------------------------------------- /DesignTool/MachineLearning/IFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/MachineLearning/IFunction.cs -------------------------------------------------------------------------------- /DesignTool/MachineLearning/KrigingRegression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/MachineLearning/KrigingRegression.cs -------------------------------------------------------------------------------- /DesignTool/MachineLearning/Observation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/MachineLearning/Observation.cs -------------------------------------------------------------------------------- /DesignTool/MachineLearning/Regression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/MachineLearning/Regression.cs -------------------------------------------------------------------------------- /DesignTool/MachineLearning/Sampling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/MachineLearning/Sampling.cs -------------------------------------------------------------------------------- /DesignTool/MachineLearning/SimpleSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/MachineLearning/SimpleSearch.cs -------------------------------------------------------------------------------- /DesignTool/MachineLearning/ValidationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/MachineLearning/ValidationResult.cs -------------------------------------------------------------------------------- /DesignTool/Model/BaseDesign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Model/BaseDesign.cs -------------------------------------------------------------------------------- /DesignTool/Model/BraninObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Model/BraninObject.cs -------------------------------------------------------------------------------- /DesignTool/Model/ComputedMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Model/ComputedMember.cs -------------------------------------------------------------------------------- /DesignTool/Model/ComputedStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Model/ComputedStructure.cs -------------------------------------------------------------------------------- /DesignTool/Model/CoordVar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Model/CoordVar.cs -------------------------------------------------------------------------------- /DesignTool/Model/DOF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Model/DOF.cs -------------------------------------------------------------------------------- /DesignTool/Model/IDesign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Model/IDesign.cs -------------------------------------------------------------------------------- /DesignTool/Model/ISection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Model/ISection.cs -------------------------------------------------------------------------------- /DesignTool/Model/ISetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Model/ISetup.cs -------------------------------------------------------------------------------- /DesignTool/Model/IVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Model/IVariable.cs -------------------------------------------------------------------------------- /DesignTool/Model/Load.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Model/Load.cs -------------------------------------------------------------------------------- /DesignTool/Model/LoadCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Model/LoadCase.cs -------------------------------------------------------------------------------- /DesignTool/Model/Material.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Model/Material.cs -------------------------------------------------------------------------------- /DesignTool/Model/Member.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Model/Member.cs -------------------------------------------------------------------------------- /DesignTool/Model/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Model/Node.cs -------------------------------------------------------------------------------- /DesignTool/Model/ParametricRelation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Model/ParametricRelation.cs -------------------------------------------------------------------------------- /DesignTool/Model/RectangularSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Model/RectangularSection.cs -------------------------------------------------------------------------------- /DesignTool/Model/RodSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Model/RodSection.cs -------------------------------------------------------------------------------- /DesignTool/Model/RoundTubeSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Model/RoundTubeSection.cs -------------------------------------------------------------------------------- /DesignTool/Model/Structure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Model/Structure.cs -------------------------------------------------------------------------------- /DesignTool/Model/StructureSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Model/StructureSetup.cs -------------------------------------------------------------------------------- /DesignTool/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Properties/AppManifest.xml -------------------------------------------------------------------------------- /DesignTool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DesignTool/Serialization/DXFMaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Serialization/DXFMaker.cs -------------------------------------------------------------------------------- /DesignTool/Serialization/FileSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Serialization/FileSerializer.cs -------------------------------------------------------------------------------- /DesignTool/StructureEngine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/StructureEngine.sln -------------------------------------------------------------------------------- /DesignTool/StructureEngineCS_StormCloud.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/StructureEngineCS_StormCloud.csproj -------------------------------------------------------------------------------- /DesignTool/Test/DSGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Test/DSGenerator.cs -------------------------------------------------------------------------------- /DesignTool/Test/DSPlotter2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Test/DSPlotter2D.cs -------------------------------------------------------------------------------- /DesignTool/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/Utilities.cs -------------------------------------------------------------------------------- /DesignTool/View/DrawUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/View/DrawUtility.cs -------------------------------------------------------------------------------- /DesignTool/View/GrammarControls/AirportDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/View/GrammarControls/AirportDrawer.cs -------------------------------------------------------------------------------- /DesignTool/View/GrammarControls/BridgeDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/View/GrammarControls/BridgeDrawer.cs -------------------------------------------------------------------------------- /DesignTool/View/GrammarControls/RuleControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/View/GrammarControls/RuleControl.xaml -------------------------------------------------------------------------------- /DesignTool/View/GrammarControls/SimpleDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/View/GrammarControls/SimpleDrawer.cs -------------------------------------------------------------------------------- /DesignTool/View/IDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/View/IDrawer.cs -------------------------------------------------------------------------------- /DesignTool/View/IModeBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/View/IModeBehavior.cs -------------------------------------------------------------------------------- /DesignTool/View/InteractiveStructure/IControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/View/InteractiveStructure/IControl.cs -------------------------------------------------------------------------------- /DesignTool/View/ShapeControl_old.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/View/ShapeControl_old.xaml -------------------------------------------------------------------------------- /DesignTool/View/ShapeControl_old.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/View/ShapeControl_old.xaml.cs -------------------------------------------------------------------------------- /DesignTool/View/StaticStructure/SetupBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/View/StaticStructure/SetupBehavior.cs -------------------------------------------------------------------------------- /DesignTool/View/StaticStructure/TrussDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/DesignTool/View/StaticStructure/TrussDrawer.cs -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Diversity/Diversity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Diversity/Diversity.csproj -------------------------------------------------------------------------------- /Diversity/Diversity.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Diversity/Diversity.csproj.user -------------------------------------------------------------------------------- /Diversity/DiversityComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Diversity/DiversityComponent.cs -------------------------------------------------------------------------------- /Diversity/DiversityInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Diversity/DiversityInfo.cs -------------------------------------------------------------------------------- /Diversity/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Diversity/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Diversity/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Diversity/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Diversity/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Diversity/Properties/Resources.resx -------------------------------------------------------------------------------- /Diversity/Resources/Diversity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Diversity/Resources/Diversity.png -------------------------------------------------------------------------------- /Diversity/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Diversity/packages.config -------------------------------------------------------------------------------- /Documentation/Installation instructions.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Documentation/Installation instructions.docx -------------------------------------------------------------------------------- /Documentation/MIT_TLO_Software_Description.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Documentation/MIT_TLO_Software_Description.docx -------------------------------------------------------------------------------- /Documentation/images/MOO_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Documentation/images/MOO_doc.png -------------------------------------------------------------------------------- /Documentation/tools_readme.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Documentation/tools_readme.docx -------------------------------------------------------------------------------- /Documentation/tools_readme_v1_1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Documentation/tools_readme_v1_1.docx -------------------------------------------------------------------------------- /Documentation/tools_readme_v1_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Documentation/tools_readme_v1_1.pdf -------------------------------------------------------------------------------- /Documentation/tools_readme_v1_3.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Documentation/tools_readme_v1_3.docx -------------------------------------------------------------------------------- /Documentation/tools_readme_v1_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Documentation/tools_readme_v1_3.pdf -------------------------------------------------------------------------------- /Documentation/tools_readme_v1_4.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Documentation/tools_readme_v1_4.docx -------------------------------------------------------------------------------- /Documentation/tools_readme_v1_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Documentation/tools_readme_v1_4.pdf -------------------------------------------------------------------------------- /Documentation/tools_readme_v1_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Documentation/tools_readme_v1_5.pdf -------------------------------------------------------------------------------- /Documentation/tools_readme_v2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Documentation/tools_readme_v2.docx -------------------------------------------------------------------------------- /Effects/Effects.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Effects/Effects.csproj -------------------------------------------------------------------------------- /Effects/Effects.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Effects/Effects.csproj.user -------------------------------------------------------------------------------- /Effects/EffectsComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Effects/EffectsComponent.cs -------------------------------------------------------------------------------- /Effects/EffectsComponentAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Effects/EffectsComponentAttributes.cs -------------------------------------------------------------------------------- /Effects/EffectsInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Effects/EffectsInfo.cs -------------------------------------------------------------------------------- /Effects/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Effects/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Effects/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Effects/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Effects/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Effects/Properties/Resources.resx -------------------------------------------------------------------------------- /Effects/Resources/Effects1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Effects/Resources/Effects1.png -------------------------------------------------------------------------------- /Effects/effects-test.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Effects/effects-test.gh -------------------------------------------------------------------------------- /Effects/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Effects/packages.config -------------------------------------------------------------------------------- /FixProject.vsix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/FixProject.vsix -------------------------------------------------------------------------------- /Gradient_MOO/GradientMOOComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Gradient_MOO/GradientMOOComponent.cs -------------------------------------------------------------------------------- /Gradient_MOO/GradientMOOComponentAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Gradient_MOO/GradientMOOComponentAttributes.cs -------------------------------------------------------------------------------- /Gradient_MOO/Gradient_MOO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Gradient_MOO/Gradient_MOO.csproj -------------------------------------------------------------------------------- /Gradient_MOO/Gradient_MOOInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Gradient_MOO/Gradient_MOOInfo.cs -------------------------------------------------------------------------------- /Gradient_MOO/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Gradient_MOO/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Gradient_MOO/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Gradient_MOO/app.config -------------------------------------------------------------------------------- /Gradient_MOO/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Gradient_MOO/packages.config -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalCSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalCSharp.sln -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalCSharp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalCSharp/App.config -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalCSharp/Core/Algorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalCSharp/Core/Algorithm.cs -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalCSharp/Core/Operator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalCSharp/Core/Operator.cs -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalCSharp/Core/Problem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalCSharp/Core/Problem.cs -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalCSharp/Core/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalCSharp/Core/Solution.cs -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalCSharp/Core/Variable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalCSharp/Core/Variable.cs -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalCSharp/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalCSharp/License -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalCSharp/Utils/BitSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalCSharp/Utils/BitSet.cs -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalCSharp/Utils/Distance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalCSharp/Utils/Distance.cs -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalCSharp/Utils/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalCSharp/Utils/Logger.cs -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalCSharp/Utils/Ranking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalCSharp/Utils/Ranking.cs -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalCSharp/Utils/Shuffle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalCSharp/Utils/Shuffle.cs -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalCSharp/Utils/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalCSharp/Utils/Utils.cs -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalCSharp/author: -------------------------------------------------------------------------------- 1 | Created By Jesús David García Gómez -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalCSharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalCSharp/packages.config -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalRunners/AbYSS/AbYSS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalRunners/AbYSS/AbYSS.cs -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalRunners/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalRunners/App.config -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalRunners/GDE3/GDE3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalRunners/GDE3/GDE3.cs -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalRunners/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalRunners/License -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalRunners/MOCell/MOCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalRunners/MOCell/MOCell.cs -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalRunners/MOEAD/MOEAD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalRunners/MOEAD/MOEAD.cs -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalRunners/MOEAD/PMOEAD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalRunners/MOEAD/PMOEAD.cs -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalRunners/NSGAII/NSGAII.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalRunners/NSGAII/NSGAII.cs -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalRunners/NSGAII/PNSGAII.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalRunners/NSGAII/PNSGAII.cs -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalRunners/PAES/PAES.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalRunners/PAES/PAES.cs -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalRunners/SMPSO/SMPSO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalRunners/SMPSO/SMPSO.cs -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalRunners/SMPSO/SMPSOhv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalRunners/SMPSO/SMPSOhv.cs -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalRunners/SMPSO/pSMPSO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalRunners/SMPSO/pSMPSO.cs -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalRunners/SPEA2/SPEA2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalRunners/SPEA2/SPEA2.cs -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalRunners/author: -------------------------------------------------------------------------------- 1 | Created By Jesús David García Gómez -------------------------------------------------------------------------------- /JMetalCSharp.V05/JMetalRunners/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/JMetalCSharp.V05/JMetalRunners/packages.config -------------------------------------------------------------------------------- /MOO/MOO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/MOO/MOO.cs -------------------------------------------------------------------------------- /MOO/MOO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/MOO/MOO.csproj -------------------------------------------------------------------------------- /MOO/MOO.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/MOO/MOO.csproj.user -------------------------------------------------------------------------------- /MOO/MOOComponentAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/MOO/MOOComponentAttributes.cs -------------------------------------------------------------------------------- /MOO/MOOInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/MOO/MOOInfo.cs -------------------------------------------------------------------------------- /MOO/NSGAII.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/MOO/NSGAII.cs -------------------------------------------------------------------------------- /MOO/NSGAIIProblem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/MOO/NSGAIIProblem.cs -------------------------------------------------------------------------------- /MOO/NSGAIIRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/MOO/NSGAIIRunner.cs -------------------------------------------------------------------------------- /MOO/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/MOO/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MOO/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/MOO/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /MOO/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/MOO/Properties/Resources.resx -------------------------------------------------------------------------------- /MOO/Resources/MOO1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/MOO/Resources/MOO1.png -------------------------------------------------------------------------------- /MOO/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/MOO/app.config -------------------------------------------------------------------------------- /MOO/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/MOO/log4net.config -------------------------------------------------------------------------------- /MOO/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/MOO/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/README.md -------------------------------------------------------------------------------- /Radical/DSOptimization/Design.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/DSOptimization/Design.cs -------------------------------------------------------------------------------- /Radical/DSOptimization/IOptimizeToolVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/DSOptimization/IOptimizeToolVM.cs -------------------------------------------------------------------------------- /Radical/DSOptimization/Model/Constraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/DSOptimization/Model/Constraint.cs -------------------------------------------------------------------------------- /Radical/DSOptimization/Model/CurveVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/DSOptimization/Model/CurveVariable.cs -------------------------------------------------------------------------------- /Radical/DSOptimization/Model/DesignCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/DSOptimization/Model/DesignCurve.cs -------------------------------------------------------------------------------- /Radical/DSOptimization/Model/DesignSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/DSOptimization/Model/DesignSurface.cs -------------------------------------------------------------------------------- /Radical/DSOptimization/Model/GeoVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/DSOptimization/Model/GeoVariable.cs -------------------------------------------------------------------------------- /Radical/DSOptimization/Model/IDesignGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/DSOptimization/Model/IDesignGeometry.cs -------------------------------------------------------------------------------- /Radical/DSOptimization/Model/IVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/DSOptimization/Model/IVariable.cs -------------------------------------------------------------------------------- /Radical/DSOptimization/Model/SliderVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/DSOptimization/Model/SliderVariable.cs -------------------------------------------------------------------------------- /Radical/DSOptimization/Model/SurfaceVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/DSOptimization/Model/SurfaceVariable.cs -------------------------------------------------------------------------------- /Radical/DSOptimization/RadicalComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/DSOptimization/RadicalComponent.cs -------------------------------------------------------------------------------- /Radical/DSOptimization/View/BaseControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/DSOptimization/View/BaseControl.cs -------------------------------------------------------------------------------- /Radical/DSOptimization/View/VariableControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/DSOptimization/View/VariableControl.xaml -------------------------------------------------------------------------------- /Radical/DSOptimization/ViewModel/BaseVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/DSOptimization/ViewModel/BaseVM.cs -------------------------------------------------------------------------------- /Radical/DSOptimization/ViewModel/ConstVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/DSOptimization/ViewModel/ConstVM.cs -------------------------------------------------------------------------------- /Radical/DSOptimization/ViewModel/GroupVarVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/DSOptimization/ViewModel/GroupVarVM.cs -------------------------------------------------------------------------------- /Radical/DSOptimization/ViewModel/IViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/DSOptimization/ViewModel/IViewModel.cs -------------------------------------------------------------------------------- /Radical/DSOptimization/ViewModel/VarVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/DSOptimization/ViewModel/VarVM.cs -------------------------------------------------------------------------------- /Radical/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Radical/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Radical/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/Properties/Resources.resx -------------------------------------------------------------------------------- /Radical/Radical.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/Radical.csproj -------------------------------------------------------------------------------- /Radical/RadicalFolder/DSModel/Constraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/DSModel/Constraint.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/DSModel/CurveVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/DSModel/CurveVariable.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/DSModel/DesignCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/DSModel/DesignCurve.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/DSModel/DesignSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/DSModel/DesignSurface.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/DSModel/GeoVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/DSModel/GeoVariable.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/DSModel/IDesignGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/DSModel/IDesignGeometry.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/DSModel/IVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/DSModel/IVariable.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/DSModel/SliderVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/DSModel/SliderVariable.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/DSModel/SurfaceVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/DSModel/SurfaceVariable.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/DSView/BaseControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/DSView/BaseControl.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/DSViewModel/BaseVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/DSViewModel/BaseVM.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/DSViewModel/ConstVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/DSViewModel/ConstVM.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/DSViewModel/GroupVarVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/DSViewModel/GroupVarVM.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/DSViewModel/IViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/DSViewModel/IViewModel.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/DSViewModel/VarVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/DSViewModel/VarVM.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/Integration/Design.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/Integration/Design.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/Integration/IDesign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/Integration/IDesign.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/Model/RadicalOptimizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/Model/RadicalOptimizer.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/Model/Sampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/Model/Sampler.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/Model/csvWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/Model/csvWriter.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/RadicalInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/RadicalInfo.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/View/GraphControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/View/GraphControl.xaml -------------------------------------------------------------------------------- /Radical/RadicalFolder/View/GraphControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/View/GraphControl.xaml.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/View/RadicalWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/View/RadicalWindow.xaml -------------------------------------------------------------------------------- /Radical/RadicalFolder/View/RadicalWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/View/RadicalWindow.xaml.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/View/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/View/packages.config -------------------------------------------------------------------------------- /Radical/RadicalFolder/ViewModel/GraphVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/ViewModel/GraphVM.cs -------------------------------------------------------------------------------- /Radical/RadicalFolder/ViewModel/RadicalVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/RadicalFolder/ViewModel/RadicalVM.cs -------------------------------------------------------------------------------- /Radical/Resources/DSOpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/Resources/DSOpt.png -------------------------------------------------------------------------------- /Radical/Resources/DSOpt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/Resources/DSOpt2.png -------------------------------------------------------------------------------- /Radical/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/app.config -------------------------------------------------------------------------------- /Radical/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Radical/packages.config -------------------------------------------------------------------------------- /Reader/MyProject1Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Reader/MyProject1Info.cs -------------------------------------------------------------------------------- /Reader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Reader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Reader/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Reader/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Reader/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Reader/Properties/Resources.resx -------------------------------------------------------------------------------- /Reader/Reader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Reader/Reader.csproj -------------------------------------------------------------------------------- /Reader/ReaderComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Reader/ReaderComponent.cs -------------------------------------------------------------------------------- /Reader/ReaderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Reader/ReaderInfo.cs -------------------------------------------------------------------------------- /Reader/Resources/Reader1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Reader/Resources/Reader1.png -------------------------------------------------------------------------------- /Reader/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Reader/packages.config -------------------------------------------------------------------------------- /Sampler/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sampler/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sampler/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sampler/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Sampler/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sampler/Properties/Resources.resx -------------------------------------------------------------------------------- /Sampler/Resources/Sampler1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sampler/Resources/Sampler1.png -------------------------------------------------------------------------------- /Sampler/Sampler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sampler/Sampler.csproj -------------------------------------------------------------------------------- /Sampler/SamplerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sampler/SamplerComponent.cs -------------------------------------------------------------------------------- /Sampler/SamplerComponentAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sampler/SamplerComponentAttributes.cs -------------------------------------------------------------------------------- /Sampler/SamplerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sampler/SamplerInfo.cs -------------------------------------------------------------------------------- /Sampler/SamplerUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sampler/SamplerUtilities.cs -------------------------------------------------------------------------------- /Sampler/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sampler/app.config -------------------------------------------------------------------------------- /Sampler/bintest-01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sampler/bintest-01.csv -------------------------------------------------------------------------------- /Sampler/bintestncb-01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sampler/bintestncb-01.csv -------------------------------------------------------------------------------- /Sampler/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sampler/packages.config -------------------------------------------------------------------------------- /Sift/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sift/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sift/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sift/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Sift/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sift/Properties/Resources.resx -------------------------------------------------------------------------------- /Sift/Resources/sift1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sift/Resources/sift1.png -------------------------------------------------------------------------------- /Sift/Sift.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sift/Sift.csproj -------------------------------------------------------------------------------- /Sift/Sift.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sift/Sift.csproj.user -------------------------------------------------------------------------------- /Sift/SiftComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sift/SiftComponent.cs -------------------------------------------------------------------------------- /Sift/SiftComponentAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sift/SiftComponentAttributes.cs -------------------------------------------------------------------------------- /Sift/SiftInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sift/SiftInfo.cs -------------------------------------------------------------------------------- /Sift/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sift/app.config -------------------------------------------------------------------------------- /Sift/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Sift/packages.config -------------------------------------------------------------------------------- /Stepper/BaseControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/BaseControl.cs -------------------------------------------------------------------------------- /Stepper/BaseVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/BaseVM.cs -------------------------------------------------------------------------------- /Stepper/CurveVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/CurveVariable.cs -------------------------------------------------------------------------------- /Stepper/Design.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/Design.cs -------------------------------------------------------------------------------- /Stepper/DesignCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/DesignCurve.cs -------------------------------------------------------------------------------- /Stepper/DesignSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/DesignSurface.cs -------------------------------------------------------------------------------- /Stepper/GeoVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/GeoVariable.cs -------------------------------------------------------------------------------- /Stepper/GroupVarVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/GroupVarVM.cs -------------------------------------------------------------------------------- /Stepper/IDesignGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/IDesignGeometry.cs -------------------------------------------------------------------------------- /Stepper/IOptimizeToolVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/IOptimizeToolVM.cs -------------------------------------------------------------------------------- /Stepper/IStepDataElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/IStepDataElement.cs -------------------------------------------------------------------------------- /Stepper/IVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/IVariable.cs -------------------------------------------------------------------------------- /Stepper/IViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/IViewModel.cs -------------------------------------------------------------------------------- /Stepper/ObjectiveVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/ObjectiveVM.cs -------------------------------------------------------------------------------- /Stepper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Stepper/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Stepper/Properties/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/Properties/Resources.cs -------------------------------------------------------------------------------- /Stepper/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/Properties/Resources.resx -------------------------------------------------------------------------------- /Stepper/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Stepper/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/Properties/Settings.settings -------------------------------------------------------------------------------- /Stepper/SliderVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/SliderVariable.cs -------------------------------------------------------------------------------- /Stepper/Stepper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/Stepper.csproj -------------------------------------------------------------------------------- /Stepper/Stepper.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/Stepper.csproj.user -------------------------------------------------------------------------------- /Stepper/StepperComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/StepperComponent.cs -------------------------------------------------------------------------------- /Stepper/StepperComponentAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/StepperComponentAttributes.cs -------------------------------------------------------------------------------- /Stepper/StepperGraphVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/StepperGraphVM.cs -------------------------------------------------------------------------------- /Stepper/StepperInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/StepperInfo.cs -------------------------------------------------------------------------------- /Stepper/StepperOptimizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/StepperOptimizer.cs -------------------------------------------------------------------------------- /Stepper/StepperVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/StepperVM.cs -------------------------------------------------------------------------------- /Stepper/Styles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/Styles.cs -------------------------------------------------------------------------------- /Stepper/SurfaceVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/SurfaceVariable.cs -------------------------------------------------------------------------------- /Stepper/VarVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/VarVM.cs -------------------------------------------------------------------------------- /Stepper/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/packages.config -------------------------------------------------------------------------------- /Stepper/stepperfolder/view/datacontrol.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/stepperfolder/view/datacontrol.xaml -------------------------------------------------------------------------------- /Stepper/stepperfolder/view/settingscontrol.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/stepperfolder/view/settingscontrol.xaml -------------------------------------------------------------------------------- /Stepper/stepperfolder/view/stepperwindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Stepper/stepperfolder/view/stepperwindow.xaml -------------------------------------------------------------------------------- /StepperAux/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StepperAux/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /StepperAux/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Properties/Resources.resx -------------------------------------------------------------------------------- /StepperAux/Resources/Stepper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Resources/Stepper.png -------------------------------------------------------------------------------- /StepperAux/Stepper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper.csproj -------------------------------------------------------------------------------- /StepperAux/Stepper/Design.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/Design.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/IOptimizeToolVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/IOptimizeToolVM.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/Model/CurveVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/Model/CurveVariable.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/Model/DesignCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/Model/DesignCurve.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/Model/DesignSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/Model/DesignSurface.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/Model/GeoVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/Model/GeoVariable.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/Model/IDesignGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/Model/IDesignGeometry.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/Model/IVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/Model/IVariable.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/Model/SliderVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/Model/SliderVariable.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/Model/SurfaceVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/Model/SurfaceVariable.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/ObjectiveVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/ObjectiveVM.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/StepperComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/StepperComponent.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/StepperComponentAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/StepperComponentAttributes.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/StepperInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/StepperInfo.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/StepperOptimizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/StepperOptimizer.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/Styles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/Styles.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/View/BaseControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/View/BaseControl.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/View/DataControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/View/DataControl.xaml -------------------------------------------------------------------------------- /StepperAux/Stepper/View/DataControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/View/DataControl.xaml.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/View/SettingsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/View/SettingsControl.xaml -------------------------------------------------------------------------------- /StepperAux/Stepper/View/SettingsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/View/SettingsControl.xaml.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/View/StepperGraphControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/View/StepperGraphControl.xaml -------------------------------------------------------------------------------- /StepperAux/Stepper/View/StepperWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/View/StepperWindow.xaml -------------------------------------------------------------------------------- /StepperAux/Stepper/View/StepperWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/View/StepperWindow.xaml.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/View/VariableControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/View/VariableControl.xaml -------------------------------------------------------------------------------- /StepperAux/Stepper/View/VariableControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/View/VariableControl.xaml.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/ViewModel/BaseVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/ViewModel/BaseVM.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/ViewModel/GroupVarVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/ViewModel/GroupVarVM.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/ViewModel/IStepDataElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/ViewModel/IStepDataElement.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/ViewModel/IViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/ViewModel/IViewModel.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/ViewModel/StepperGraphVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/ViewModel/StepperGraphVM.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/ViewModel/StepperVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/ViewModel/StepperVM.cs -------------------------------------------------------------------------------- /StepperAux/Stepper/ViewModel/VarVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/Stepper/ViewModel/VarVM.cs -------------------------------------------------------------------------------- /StepperAux/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/app.config -------------------------------------------------------------------------------- /StepperAux/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StepperAux/packages.config -------------------------------------------------------------------------------- /StormCloud/1StormCloudWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/1StormCloudWindow.xaml.cs -------------------------------------------------------------------------------- /StormCloud/2StormCloudWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/2StormCloudWindow.xaml.cs -------------------------------------------------------------------------------- /StormCloud/3StormCloudWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/3StormCloudWindow.xaml.cs -------------------------------------------------------------------------------- /StormCloud/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/AssemblyInfo.cs -------------------------------------------------------------------------------- /StormCloud/Components/InterOptComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/Components/InterOptComponent.cs -------------------------------------------------------------------------------- /StormCloud/DesignControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/DesignControl.xaml.cs -------------------------------------------------------------------------------- /StormCloud/Evolutionary/Design.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/Evolutionary/Design.cs -------------------------------------------------------------------------------- /StormCloud/Evolutionary/DesignVar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/Evolutionary/DesignVar.cs -------------------------------------------------------------------------------- /StormCloud/Evolutionary/EvolutionaryUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/Evolutionary/EvolutionaryUtilities.cs -------------------------------------------------------------------------------- /StormCloud/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /StormCloud/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/Properties/Resources.resx -------------------------------------------------------------------------------- /StormCloud/StormCloud.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/StormCloud.csproj -------------------------------------------------------------------------------- /StormCloud/StormCloudInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/StormCloudInfo.cs -------------------------------------------------------------------------------- /StormCloud/StormCloudWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/StormCloudWindow.xaml.cs -------------------------------------------------------------------------------- /StormCloud/ViewModel/BaseVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/ViewModel/BaseVM.cs -------------------------------------------------------------------------------- /StormCloud/ViewModel/DesignToolVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/ViewModel/DesignToolVM.cs -------------------------------------------------------------------------------- /StormCloud/ViewModel/DesignVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/ViewModel/DesignVM.cs -------------------------------------------------------------------------------- /StormCloud/ViewModel/RenderingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/ViewModel/RenderingSettings.cs -------------------------------------------------------------------------------- /StormCloud/ViewModel/RhinoHelixUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/ViewModel/RhinoHelixUtilities.cs -------------------------------------------------------------------------------- /StormCloud/csvWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/csvWriter.cs -------------------------------------------------------------------------------- /StormCloud/designcontrol.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/designcontrol.xaml -------------------------------------------------------------------------------- /StormCloud/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/packages.config -------------------------------------------------------------------------------- /StormCloud/resources/gen_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/resources/gen_icon.png -------------------------------------------------------------------------------- /StormCloud/resources/gen_icon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/resources/gen_icon_small.png -------------------------------------------------------------------------------- /StormCloud/resources/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/resources/wrench.png -------------------------------------------------------------------------------- /StormCloud/stormcloudwindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloud/stormcloudwindow.xaml -------------------------------------------------------------------------------- /StormCloudAnalysis/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloudAnalysis/AssemblyInfo.cs -------------------------------------------------------------------------------- /StormCloudAnalysis/Components/Display.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloudAnalysis/Components/Display.cs -------------------------------------------------------------------------------- /StormCloudAnalysis/Components/LoadComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloudAnalysis/Components/LoadComponent.cs -------------------------------------------------------------------------------- /StormCloudAnalysis/Components/SizingComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloudAnalysis/Components/SizingComponent.cs -------------------------------------------------------------------------------- /StormCloudAnalysis/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloudAnalysis/Properties/Resources.resx -------------------------------------------------------------------------------- /StormCloudAnalysis/StormCloudAnalysis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloudAnalysis/StormCloudAnalysis.csproj -------------------------------------------------------------------------------- /StormCloudAnalysis/StormCloudAnalysisInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloudAnalysis/StormCloudAnalysisInfo.cs -------------------------------------------------------------------------------- /StormCloudAnalysis/Types/MaterialType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloudAnalysis/Types/MaterialType.cs -------------------------------------------------------------------------------- /StormCloudAnalysis/Types/StructureType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloudAnalysis/Types/StructureType.cs -------------------------------------------------------------------------------- /StormCloudAnalysis/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StormCloudAnalysis/packages.config -------------------------------------------------------------------------------- /StructureEngineCS/StructureEngineCS/Model/DOF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StructureEngineCS/StructureEngineCS/Model/DOF.cs -------------------------------------------------------------------------------- /StructureEngineCS/StructureEngineCS/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StructureEngineCS/StructureEngineCS/Utilities.cs -------------------------------------------------------------------------------- /StructureEngineCS_StormCloud/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StructureEngineCS_StormCloud/AssemblyInfo.cs -------------------------------------------------------------------------------- /StructureEngineCS_StormCloud/Model/DOF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StructureEngineCS_StormCloud/Model/DOF.cs -------------------------------------------------------------------------------- /StructureEngineCS_StormCloud/Model/ISection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StructureEngineCS_StormCloud/Model/ISection.cs -------------------------------------------------------------------------------- /StructureEngineCS_StormCloud/Model/Load.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StructureEngineCS_StormCloud/Model/Load.cs -------------------------------------------------------------------------------- /StructureEngineCS_StormCloud/Model/LoadCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StructureEngineCS_StormCloud/Model/LoadCase.cs -------------------------------------------------------------------------------- /StructureEngineCS_StormCloud/Model/Material.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StructureEngineCS_StormCloud/Model/Material.cs -------------------------------------------------------------------------------- /StructureEngineCS_StormCloud/Model/Member.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StructureEngineCS_StormCloud/Model/Member.cs -------------------------------------------------------------------------------- /StructureEngineCS_StormCloud/Model/MemberType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StructureEngineCS_StormCloud/Model/MemberType.cs -------------------------------------------------------------------------------- /StructureEngineCS_StormCloud/Model/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StructureEngineCS_StormCloud/Model/Node.cs -------------------------------------------------------------------------------- /StructureEngineCS_StormCloud/Model/RodSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StructureEngineCS_StormCloud/Model/RodSection.cs -------------------------------------------------------------------------------- /StructureEngineCS_StormCloud/Model/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StructureEngineCS_StormCloud/Model/Section.cs -------------------------------------------------------------------------------- /StructureEngineCS_StormCloud/Model/Structure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StructureEngineCS_StormCloud/Model/Structure.cs -------------------------------------------------------------------------------- /StructureEngineCS_StormCloud/lib/RhinoCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StructureEngineCS_StormCloud/lib/RhinoCommon.dll -------------------------------------------------------------------------------- /StructureEngineCS_StormCloud/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/StructureEngineCS_StormCloud/packages.config -------------------------------------------------------------------------------- /Tilde/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Tilde/.gitattributes -------------------------------------------------------------------------------- /Tilde/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Tilde/.gitignore -------------------------------------------------------------------------------- /Tilde/DSECommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Tilde/DSECommon.dll -------------------------------------------------------------------------------- /Tilde/Global.cs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tilde/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Tilde/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Tilde/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Tilde/Properties/Resources.resx -------------------------------------------------------------------------------- /Tilde/Resources/Tilde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Tilde/Resources/Tilde.png -------------------------------------------------------------------------------- /Tilde/Sample Files/Tilde-Test-File.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Tilde/Sample Files/Tilde-Test-File.gh -------------------------------------------------------------------------------- /Tilde/Tilde.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Tilde/Tilde.Properties.Resources.resources -------------------------------------------------------------------------------- /Tilde/Tilde.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Tilde/Tilde.csproj -------------------------------------------------------------------------------- /Tilde/Tilde/ProblemBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Tilde/Tilde/ProblemBuilder.cs -------------------------------------------------------------------------------- /Tilde/Tilde/Properties/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Tilde/Tilde/Properties/Resources.cs -------------------------------------------------------------------------------- /Tilde/Tilde/TildeComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Tilde/Tilde/TildeComponent.cs -------------------------------------------------------------------------------- /Tilde/Tilde/TildeComponentAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Tilde/Tilde/TildeComponentAttributes.cs -------------------------------------------------------------------------------- /Tilde/Tilde/TildeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Tilde/Tilde/TildeInfo.cs -------------------------------------------------------------------------------- /Tilde/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Tilde/app.config -------------------------------------------------------------------------------- /Tilde/gh-tilde.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Tilde/gh-tilde.sln -------------------------------------------------------------------------------- /Tilde/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Tilde/packages.config -------------------------------------------------------------------------------- /Writer/MyComponent1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Writer/MyComponent1.cs -------------------------------------------------------------------------------- /Writer/MyProject1Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Writer/MyProject1Info.cs -------------------------------------------------------------------------------- /Writer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Writer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Writer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Writer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Writer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Writer/Properties/Resources.resx -------------------------------------------------------------------------------- /Writer/Resources/Writer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Writer/Resources/Writer1.png -------------------------------------------------------------------------------- /Writer/Writer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Writer/Writer.cs -------------------------------------------------------------------------------- /Writer/Writer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Writer/Writer.csproj -------------------------------------------------------------------------------- /Writer/WriterComponentUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Writer/WriterComponentUtilities.cs -------------------------------------------------------------------------------- /Writer/WriterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Writer/WriterInfo.cs -------------------------------------------------------------------------------- /Writer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/Writer/packages.config -------------------------------------------------------------------------------- /_TestFiles/7_bar_truss_example.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/_TestFiles/7_bar_truss_example.gh -------------------------------------------------------------------------------- /_TestFiles/Effects-test.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/_TestFiles/Effects-test.gh -------------------------------------------------------------------------------- /_TestFiles/MOO-test.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/_TestFiles/MOO-test.gh -------------------------------------------------------------------------------- /_TestFiles/MOO-test_unplugged.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/_TestFiles/MOO-test_unplugged.gh -------------------------------------------------------------------------------- /_TestFiles/capture-test.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/_TestFiles/capture-test.gh -------------------------------------------------------------------------------- /_TestFiles/cluster-test.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/_TestFiles/cluster-test.gh -------------------------------------------------------------------------------- /_TestFiles/diversity-test-sort.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/_TestFiles/diversity-test-sort.gh -------------------------------------------------------------------------------- /_TestFiles/diversity-test.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/_TestFiles/diversity-test.gh -------------------------------------------------------------------------------- /_TestFiles/diversity-test2obj.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/_TestFiles/diversity-test2obj.gh -------------------------------------------------------------------------------- /_TestFiles/diversity_MOO_test.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/_TestFiles/diversity_MOO_test.gh -------------------------------------------------------------------------------- /_TestFiles/radical-test-surface.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/_TestFiles/radical-test-surface.gh -------------------------------------------------------------------------------- /_TestFiles/radical-test.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/_TestFiles/radical-test.gh -------------------------------------------------------------------------------- /_TestFiles/reader-test-data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/_TestFiles/reader-test-data.csv -------------------------------------------------------------------------------- /_TestFiles/reader-test.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/_TestFiles/reader-test.gh -------------------------------------------------------------------------------- /_TestFiles/sampler-test.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/_TestFiles/sampler-test.gh -------------------------------------------------------------------------------- /_TestFiles/sift-test.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/_TestFiles/sift-test.gh -------------------------------------------------------------------------------- /_TestFiles/stepper-test.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/_TestFiles/stepper-test.gh -------------------------------------------------------------------------------- /_TestFiles/stepper-test_complicated_function.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/_TestFiles/stepper-test_complicated_function.gh -------------------------------------------------------------------------------- /_TestFiles/tilde-test.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/_TestFiles/tilde-test.gh -------------------------------------------------------------------------------- /_TestFiles/writer-test.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/_TestFiles/writer-test.gh -------------------------------------------------------------------------------- /netDxf/doc/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/doc/Changelog.txt -------------------------------------------------------------------------------- /netDxf/doc/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/doc/License.txt -------------------------------------------------------------------------------- /netDxf/doc/netDxf Documentation.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/doc/netDxf Documentation.chm -------------------------------------------------------------------------------- /netDxf/netDxf/AciColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/AciColor.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Blocks/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Blocks/Block.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Blocks/BlockEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Blocks/BlockEnd.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Blocks/BlockTypeFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Blocks/BlockTypeFlags.cs -------------------------------------------------------------------------------- /netDxf/netDxf/CodeValuePair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/CodeValuePair.cs -------------------------------------------------------------------------------- /netDxf/netDxf/DrawingUnits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/DrawingUnits.cs -------------------------------------------------------------------------------- /netDxf/netDxf/DxfDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/DxfDocument.cs -------------------------------------------------------------------------------- /netDxf/netDxf/DxfException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/DxfException.cs -------------------------------------------------------------------------------- /netDxf/netDxf/DxfObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/DxfObject.cs -------------------------------------------------------------------------------- /netDxf/netDxf/DxfObjectCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/DxfObjectCode.cs -------------------------------------------------------------------------------- /netDxf/netDxf/DxfReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/DxfReader.cs -------------------------------------------------------------------------------- /netDxf/netDxf/DxfWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/DxfWriter.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/AlignedDimension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/AlignedDimension.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/Angular2LineDimension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/Angular2LineDimension.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/Angular3PointDimension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/Angular3PointDimension.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/Arc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/Arc.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/Attribute.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/AttributeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/AttributeDefinition.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/Circle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/Circle.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/DiametricDimension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/DiametricDimension.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/Dimension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/Dimension.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/DimensionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/DimensionType.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/Ellipse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/Ellipse.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/EndSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/EndSequence.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/EntityObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/EntityObject.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/Face3d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/Face3d.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/Hatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/Hatch.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/HatchBoundaryPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/HatchBoundaryPath.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/HatchGradientPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/HatchGradientPattern.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/HatchPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/HatchPattern.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/Image.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/ImageClippingBoundary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/ImageClippingBoundary.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/ImageDisplayFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/ImageDisplayFlags.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/Insert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/Insert.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/Line.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/LinearDimension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/LinearDimension.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/LwPolyline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/LwPolyline.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/LwPolylineVertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/LwPolylineVertex.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/MLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/MLine.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/MLineVertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/MLineVertex.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/MText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/MText.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/MTextAttachmentPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/MTextAttachmentPoint.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/MTextFormattingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/MTextFormattingOptions.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/OrdinateDimension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/OrdinateDimension.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/Point.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/PolyfaceMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/PolyfaceMesh.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/PolyfaceMeshFace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/PolyfaceMeshFace.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/PolyfaceMeshVertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/PolyfaceMeshVertex.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/Polyline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/Polyline.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/PolylineSmoothType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/PolylineSmoothType.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/PolylineTypeFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/PolylineTypeFlags.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/PolylineVertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/PolylineVertex.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/RadialDimension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/RadialDimension.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/Solid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/Solid.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/Spline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/Spline.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/SplineTypeFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/SplineTypeFlags.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/SplineVertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/SplineVertex.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/Text.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/TextAligment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/TextAligment.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/Vertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/Vertex.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Entities/VertexTypeFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Entities/VertexTypeFlags.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Header/AttMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Header/AttMode.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Header/DxfVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Header/DxfVersion.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Header/HeaderVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Header/HeaderVariable.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Header/HeaderVariableCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Header/HeaderVariableCode.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Header/HeaderVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Header/HeaderVariables.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Header/PointShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Header/PointShape.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Lineweight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Lineweight.cs -------------------------------------------------------------------------------- /netDxf/netDxf/MathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/MathHelper.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Matrix3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Matrix3.cs -------------------------------------------------------------------------------- /netDxf/netDxf/NetDxf.SL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/NetDxf.SL.csproj -------------------------------------------------------------------------------- /netDxf/netDxf/NetDxf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/NetDxf.csproj -------------------------------------------------------------------------------- /netDxf/netDxf/Objects/DictionaryObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Objects/DictionaryObject.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Objects/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Objects/Group.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Objects/ImageDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Objects/ImageDef.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Objects/ImageDefReactor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Objects/ImageDefReactor.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Objects/MLineStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Objects/MLineStyle.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Objects/MLineStyleElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Objects/MLineStyleElement.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Objects/RasterVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Objects/RasterVariables.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /netDxf/netDxf/SLHacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/SLHacks.cs -------------------------------------------------------------------------------- /netDxf/netDxf/StringCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/StringCode.cs -------------------------------------------------------------------------------- /netDxf/netDxf/StringEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/StringEnum.cs -------------------------------------------------------------------------------- /netDxf/netDxf/SubclassMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/SubclassMarker.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Symbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Symbols.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Tables/ApplicationRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Tables/ApplicationRegistry.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Tables/BlockRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Tables/BlockRecord.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Tables/DimensionStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Tables/DimensionStyle.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Tables/Layer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Tables/Layer.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Tables/LineType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Tables/LineType.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Tables/TableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Tables/TableObject.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Tables/TextStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Tables/TextStyle.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Tables/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Tables/View.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Tables/ViewPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Tables/ViewPort.cs -------------------------------------------------------------------------------- /netDxf/netDxf/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/UpgradeLog.htm -------------------------------------------------------------------------------- /netDxf/netDxf/Vector2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Vector2.cs -------------------------------------------------------------------------------- /netDxf/netDxf/Vector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/Vector3.cs -------------------------------------------------------------------------------- /netDxf/netDxf/XData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/XData.cs -------------------------------------------------------------------------------- /netDxf/netDxf/XDataCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/XDataCode.cs -------------------------------------------------------------------------------- /netDxf/netDxf/XDataRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/netDxf/netDxf/XDataRecord.cs -------------------------------------------------------------------------------- /structurefit-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/structurefit-master/.gitignore -------------------------------------------------------------------------------- /structurefit-master/3DTest/3DTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/structurefit-master/3DTest/3DTest.csproj -------------------------------------------------------------------------------- /structurefit-master/3DTest/3DTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/structurefit-master/3DTest/3DTest.sln -------------------------------------------------------------------------------- /structurefit-master/3DTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/structurefit-master/3DTest/App.config -------------------------------------------------------------------------------- /structurefit-master/3DTest/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/structurefit-master/3DTest/App.xaml -------------------------------------------------------------------------------- /structurefit-master/3DTest/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/structurefit-master/3DTest/App.xaml.cs -------------------------------------------------------------------------------- /structurefit-master/3DTest/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/structurefit-master/3DTest/MainWindow.xaml -------------------------------------------------------------------------------- /structurefit-master/3DTest/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/structurefit-master/3DTest/MainWindow.xaml.cs -------------------------------------------------------------------------------- /structurefit-master/3DTest/RhinoScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/structurefit-master/3DTest/RhinoScript.cs -------------------------------------------------------------------------------- /structurefit-master/3DTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/structurefit-master/3DTest/packages.config -------------------------------------------------------------------------------- /structurefit-master/DesignTool/Model/DOF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/structurefit-master/DesignTool/Model/DOF.cs -------------------------------------------------------------------------------- /structurefit-master/DesignTool/Model/Load.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/structurefit-master/DesignTool/Model/Load.cs -------------------------------------------------------------------------------- /structurefit-master/DesignTool/Model/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/structurefit-master/DesignTool/Model/Node.cs -------------------------------------------------------------------------------- /structurefit-master/DesignTool/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/structurefit-master/DesignTool/Utilities.cs -------------------------------------------------------------------------------- /structurefit-master/Libraries/AlgLib/ap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/structurefit-master/Libraries/AlgLib/ap.cs -------------------------------------------------------------------------------- /structurefit-master/Libraries/MathNet.Numerics/src/NativeWrappers/.gitignore: -------------------------------------------------------------------------------- 1 | *.aps 2 | Debug 3 | Release 4 | ipch 5 | *.opensdf -------------------------------------------------------------------------------- /structurefit-master/Libraries/MathNet.Numerics/src/Numerics/Algorithms/LinearAlgebra/native.footer.include: -------------------------------------------------------------------------------- 1 | } 2 | } -------------------------------------------------------------------------------- /temp/StormCloudAnalysis/BoolVisConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/temp/StormCloudAnalysis/BoolVisConverter.cs -------------------------------------------------------------------------------- /temp/StormCloudAnalysis/Components/Display.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/temp/StormCloudAnalysis/Components/Display.cs -------------------------------------------------------------------------------- /temp/StormCloudAnalysis/DesignControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/temp/StormCloudAnalysis/DesignControl.xaml -------------------------------------------------------------------------------- /temp/StormCloudAnalysis/DesignControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/temp/StormCloudAnalysis/DesignControl.xaml.cs -------------------------------------------------------------------------------- /temp/StormCloudAnalysis/Resources/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/temp/StormCloudAnalysis/Resources/wrench.png -------------------------------------------------------------------------------- /temp/StormCloudAnalysis/StormCloud.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/temp/StormCloudAnalysis/StormCloud.csproj -------------------------------------------------------------------------------- /temp/StormCloudAnalysis/StormCloudInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/temp/StormCloudAnalysis/StormCloudInfo.cs -------------------------------------------------------------------------------- /temp/StormCloudAnalysis/StormCloudWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/temp/StormCloudAnalysis/StormCloudWindow.xaml -------------------------------------------------------------------------------- /temp/StormCloudAnalysis/Testing/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/temp/StormCloudAnalysis/Testing/App.config -------------------------------------------------------------------------------- /temp/StormCloudAnalysis/Types/MaterialType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/temp/StormCloudAnalysis/Types/MaterialType.cs -------------------------------------------------------------------------------- /temp/StormCloudAnalysis/Types/SectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/temp/StormCloudAnalysis/Types/SectionType.cs -------------------------------------------------------------------------------- /temp/StormCloudAnalysis/View/Structure3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/temp/StormCloudAnalysis/View/Structure3D.cs -------------------------------------------------------------------------------- /temp/StormCloudAnalysis/ViewModel/BaseVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/temp/StormCloudAnalysis/ViewModel/BaseVM.cs -------------------------------------------------------------------------------- /temp/StormCloudAnalysis/ViewModel/DesignVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/temp/StormCloudAnalysis/ViewModel/DesignVM.cs -------------------------------------------------------------------------------- /temp/StormCloudAnalysis/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/temp/StormCloudAnalysis/app.config -------------------------------------------------------------------------------- /temp/StormCloudAnalysis/csvWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Digital-Structures/gh-design-space-exploration/HEAD/temp/StormCloudAnalysis/csvWriter.cs --------------------------------------------------------------------------------