Skip to content

Commit

Permalink
Moving towards Setup File Creation
Browse files Browse the repository at this point in the history
  • Loading branch information
Zujaj committed May 18, 2020
1 parent 2b69b28 commit 3a488c0
Show file tree
Hide file tree
Showing 32 changed files with 5,023 additions and 41 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="MaterialSkin, Version=2.1.2.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\MaterialSkin.2.2.1.2\lib\net461\MaterialSkin.dll</HintPath>
</Reference>
<Reference Include="MetroFramework, Version=1.4.0.0, Culture=neutral, PublicKeyToken=5f91a84759bf584a, processorArchitecture=MSIL">
<HintPath>..\packages\MetroModernUI.1.4.0.0\lib\net\MetroFramework.dll</HintPath>
</Reference>
Expand Down Expand Up @@ -76,11 +79,20 @@
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
</Compile>
<Compile Include="MainForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="MainForm.Designer.cs">
<DependentUpon>MainForm.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="MainForm.resx">
<DependentUpon>MainForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
Expand Down Expand Up @@ -130,5 +142,47 @@
<ItemGroup>
<None Include="Resources\ORGate.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\Legend - White.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\NeuralNetworkWhite.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\NeuronActivity.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\NeuronActivityWhite.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\MSE.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\MSE-White.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\WeightAdjustment.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\WeightAdjustmentWhite.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\WeightUpdater.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\WeightUpdaterWhite.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\HardLimit.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\HardLimitWhite.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\ECLTIcon.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\TS.png" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
52 changes: 25 additions & 27 deletions Error_Correction_Learning_Technique/Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Error_Correction_Learning_Technique/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Windows.Forms;
namespace Error_Correction_Learning_Technique
{
public partial class Form1 : MetroForm
public partial class Form1 :MetroForm
{
private int[,] ANDPattern, ORPattern;
private int[] ANDErrors, ANDdesiredY, ANDoutputY, ANDinputSample, ORErrors, ORdesiredY, ORoutputY, ORinputSample;
Expand Down Expand Up @@ -308,6 +308,7 @@ private void ANDexecuteBtn_Click(object sender, EventArgs e)
ANDiterationCount++;
Cursor = Cursors.WaitCursor;
varCount = 0;

logBox.AppendText("Executing the AND neural network...\n" +
"\n--------------------------------------------------------------------" +
"-------------------------------------------------------------------------------------------------------------------------------" +
Expand Down
Loading

0 comments on commit 3a488c0

Please sign in to comment.