From 31a675ab639e1c2a2c342911e80ce35a8e2ad83d Mon Sep 17 00:00:00 2001 From: sezna Date: Tue, 20 Aug 2024 14:15:04 -0700 Subject: [PATCH] Add copyright header --- library/fixed_point/src/Polynomial.qs | 1 - library/fixed_point/src/Reciprocal.qs | 1 - library/fixed_point/src/Tests.qs | 3 +++ 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/library/fixed_point/src/Polynomial.qs b/library/fixed_point/src/Polynomial.qs index 77392942b7..f7bf00c7b1 100644 --- a/library/fixed_point/src/Polynomial.qs +++ b/library/fixed_point/src/Polynomial.qs @@ -1,7 +1,6 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. - import Facts.IdenticalFormatFactFxP, Facts.AssertAllZeroFxP; import Types.FixedPoint; import Init.PrepareFxP; diff --git a/library/fixed_point/src/Reciprocal.qs b/library/fixed_point/src/Reciprocal.qs index 16ba31dccb..4c5b4049bf 100644 --- a/library/fixed_point/src/Reciprocal.qs +++ b/library/fixed_point/src/Reciprocal.qs @@ -1,7 +1,6 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. - import Types.FixedPoint; import Signed.Operations.ComputeReciprocalI, Signed.Operations.Invert2sSI; import Std.Diagnostics.Fact; diff --git a/library/fixed_point/src/Tests.qs b/library/fixed_point/src/Tests.qs index 155199a290..7154bddbfc 100644 --- a/library/fixed_point/src/Tests.qs +++ b/library/fixed_point/src/Tests.qs @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + import Init.PrepareFxP; import Types.FixedPoint; import Measurement.MeasureFxP;