From 3baa9f0687e32acdbfa43a696263313d109014e5 Mon Sep 17 00:00:00 2001 From: "Desmond A. Kirkpatrick" Date: Tue, 12 Nov 2024 15:55:20 -0800 Subject: [PATCH] cleanup --- lib/rohd_hcl.dart | 1 - .../floating_point/floating_point_adder_round_test.dart | 5 ----- test/arithmetic/multiplier_test.dart | 8 ++++---- 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/lib/rohd_hcl.dart b/lib/rohd_hcl.dart index 557793041..5b95a5fb6 100644 --- a/lib/rohd_hcl.dart +++ b/lib/rohd_hcl.dart @@ -3,7 +3,6 @@ export 'src/arbiters/arbiters.dart'; export 'src/arithmetic/arithmetic.dart'; - export 'src/binary_gray.dart'; export 'src/clock_gating.dart'; export 'src/component_config/component_config.dart'; diff --git a/test/arithmetic/floating_point/floating_point_adder_round_test.dart b/test/arithmetic/floating_point/floating_point_adder_round_test.dart index ef86b89c9..e454a4ae6 100644 --- a/test/arithmetic/floating_point/floating_point_adder_round_test.dart +++ b/test/arithmetic/floating_point/floating_point_adder_round_test.dart @@ -8,7 +8,6 @@ // Author: Desmond A Kirkpatrick , Logic Function(Logic, Logic)) ppTree, - {required bool signed, + {bool signed = false, Logic? selectSigned}) => (a, b) => CompressionTreeMultiplier(a, b, radix, selectSigned: selectSigned, @@ -141,7 +141,7 @@ void main() { int radix, ParallelPrefix Function(List, Logic Function(Logic, Logic)) ppTree, - {required bool signed, + {bool signed = false, Logic? selectSign}) => (a, b, c) => MutiplyOnly( a, @@ -153,7 +153,7 @@ void main() { MultiplyAccumulateCallback curryMultiplyAccumulate( int radix, ParallelPrefix Function(List, Logic Function(Logic, Logic)) ppTree, { - required bool signed, + bool signed = false, Logic? selectSign, }) => (a, b, c) => CompressionTreeMultiplyAccumulate(a, b, c, radix, @@ -233,7 +233,7 @@ void main() { } }); - test('trivial instnatiated multiplier', () async { + test('trivial instantiated multiplier', () async { const dataWidth = 8; const av = 12; const bv = 13;