Skip to content

Commit

Permalink
Made compression-parameters setable (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
gfoidl committed Dec 30, 2020
1 parent 7df2a61 commit b742427
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// (c) gfoidl, all rights reserved
// (c) gfoidl, all rights reserved

using System;
using System.Collections.Generic;
Expand Down Expand Up @@ -28,7 +28,7 @@ public class DeadBandCompression : Compression
/// <remarks>
/// Cf. ExDev in documentation.
/// </remarks>
public double InstrumentPrecision { get; }
public double InstrumentPrecision { get; set; }
//---------------------------------------------------------------------
/// <summary>
/// Creates a new instance of dead band compression.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// (c) gfoidl, all rights reserved
// (c) gfoidl, all rights reserved

using System;
using System.Collections.Generic;
Expand Down Expand Up @@ -29,7 +29,7 @@ public class SwingingDoorCompression : Compression
/// <remarks>
/// Cf. CompDev in documentation.
/// </remarks>
public double CompressionDeviation { get; }
public double CompressionDeviation { get; set; }
//---------------------------------------------------------------------
/// <summary>
/// Creates a new instance of swinging door compression.
Expand Down

0 comments on commit b742427

Please sign in to comment.