File tree Expand file tree Collapse file tree
tests/GraphBLAS-sharp.Tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919 <Compile Include =" Backend/Common/Utils.fs" />
2020 <Compile Include =" Backend/Common/Copy.fs" />
2121 <Compile Include =" Backend/Common/PrefixSum.fs" />
22- <Compile Include =" Backend\ Common\ BitonicSort.fs" />
22+ <Compile Include =" Backend/ Common/ BitonicSort.fs" />
2323 <Compile Include =" Backend/Common/RemoveDuplicates.fs" />
2424 <Compile Include =" Backend/CSRMatrix/GetTuples.fs" />
2525 <Compile Include =" Backend/CSRMatrix/SpGEMM.fs" />
2626 <Compile Include =" Backend/CSRMatrix/SpMSpV.fs" />
27- <Compile Include =" Backend\ CSRMatrix\ SpMV.fs" />
28- <Compile Include =" Backend\ CSRMatrix\ Transpose.fs" />
27+ <Compile Include =" Backend/ CSRMatrix/ SpMV.fs" />
28+ <Compile Include =" Backend/ CSRMatrix/ Transpose.fs" />
2929 <Compile Include =" Backend/COOMatrix/Utilities/Merge.fs" />
3030 <Compile Include =" Backend/COOMatrix/Utilities/PreparePositions.fs" />
3131 <Compile Include =" Backend/COOMatrix/Utilities/SetPositions.fs" />
5353 </Content >
5454 </ItemGroup >
5555 <Import Project =" ..\..\.paket\Paket.Restore.targets" />
56- </Project >
56+ </Project >
Original file line number Diff line number Diff line change @@ -8,12 +8,3 @@ module AnyAll =
88 PlusMonoid = Any.bool
99 TimesSemigroup = { AssociativeOp = ClosedBinaryOp <@ (&&) @> }
1010 }
11-
12- // type B private () =
13- // static let instance = B()
14- // static member Instance = instance
15- // member this.Pl() = bool.PlusMonoid.AssociativeOp
16-
17-
18- // type AnyAll2<'a> =
19- // member this.P =
Original file line number Diff line number Diff line change 99 <ItemGroup >
1010 <Compile Include =" AssemblyInfo.fs" />
1111 <Compile Include =" Helpers.fs" />
12- <Compile Include =" BackendCommonTests\ PrefixSumTests.fs" />
12+ <Compile Include =" BackendCommonTests/ PrefixSumTests.fs" />
1313 <Compile Include =" BackendCommonTests/BitonicSortTests.fs" />
14- <Compile Include =" BackendCommonTests\ RemoveDuplicatesTests.fs" />
14+ <Compile Include =" BackendCommonTests/ RemoveDuplicatesTests.fs" />
1515 <Compile Include =" MatrixOperationsTests/GetTuplesTests.fs" />
1616 <Compile Include =" MatrixOperationsTests/MxmTests.fs" />
1717 <Compile Include =" MatrixOperationsTests/MxvTests.fs" />
1818 <Compile Include =" MatrixOperationsTests/VxmTests.fs" />
1919 <Compile Include =" MatrixOperationsTests/EWiseAddTests.fs" />
20- <Compile Include =" MatrixOperationsTests\ TransposeTests.fs" />
21- <Compile Include =" AlgorithmsTests\ BfsTests.fs" />
20+ <Compile Include =" MatrixOperationsTests/ TransposeTests.fs" />
21+ <Compile Include =" AlgorithmsTests/ BfsTests.fs" />
2222 <Compile Include =" Program.fs" />
2323 </ItemGroup >
2424 <Import Project =" ..\..\.paket\Paket.Restore.targets" />
25- </Project >
25+ </Project >
Original file line number Diff line number Diff line change @@ -288,8 +288,8 @@ module Generators =
288288module Utils =
289289 let defaultConfig =
290290 { FsCheckConfig.defaultConfig with
291- maxTest = 10
292- // startSize = 1
291+ maxTest = 20
292+ startSize = 1
293293 endSize = 1000
294294 arbitrary = [
295295 typeof< Generators.SingleMatrix>
Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ let testFixtures case = [
166166 |> testPropertyWithConfig config ( getCorrectnessTestName " int" )
167167
168168 case
169- |> correctnessGenericTest< float> AddMult.float ( fun x y -> abs ( x - y) < Accuracy.medium .relative)
169+ |> correctnessGenericTest< float> AddMult.float ( fun x y -> abs ( x - y) < Accuracy.low .relative)
170170 |> testPropertyWithConfig config ( getCorrectnessTestName " float" )
171171
172172 case
You can’t perform that action at this time.
0 commit comments