Skip to content

Commit 048477d

Browse files
committed
refactor: formatting
1 parent 6ff1971 commit 048477d

4 files changed

Lines changed: 8 additions & 10 deletions

File tree

src/GraphBLAS-sharp/GraphBLAS-sharp.fsproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,6 @@
3131
<Compile Include="Predefined/Semirings/AnyAll.fs" />
3232
<Compile Include="Predefined/Semirings/AddMult.fs" />
3333
<Compile Include="Predefined/Semirings/MinAdd.fs" />
34-
<!--Compile Include="Algorithms/BFS.fs" />
35-
<Compile Include="Algorithms/ShortestPath.fs" />
36-
<Compile Include="Algorithms/TriangleCounting.fs" />
37-
<Compile Include="Algorithms/BetweennessCentrality.fs" /-->
3834
<Content Include="YC.OpenCL.NET.dll.config">
3935
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
4036
</Content>

tests/GraphBLAS-sharp.Tests/Common/ClArray/Copy.fs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ let makeTest<'a when 'a: equality> copyFun (array: array<'a>) =
2323
if array.Length > 0 then
2424
let clArray = context.CreateClArray array
2525

26-
let actual = (copyFun q HostInterop clArray: ClArray<_>).ToHostAndFree q
26+
let actual =
27+
(copyFun q HostInterop clArray: ClArray<_>)
28+
.ToHostAndFree q
29+
2730
clArray.Free q
2831

2932
logger.debug (

tests/GraphBLAS-sharp.Tests/Common/ClArray/Replicate.fs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ let makeTest<'a when 'a: equality> replicateFun (array: array<'a>) i =
2323
if array.Length > 0 && i > 0 then
2424
let clArray = context.CreateClArray array
2525

26-
let actual = (replicateFun q HostInterop clArray i: ClArray<'a>).ToHostAndFree q
26+
let actual =
27+
(replicateFun q HostInterop clArray i: ClArray<'a>)
28+
.ToHostAndFree q
29+
2730
clArray.Free q
2831

2932
logger.debug (

tests/GraphBLAS-sharp.Tests/GraphBLAS-sharp.Tests.fsproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,6 @@
3131
<Compile Include="Common/Reduce/Sum.fs" />
3232
<Compile Include="Common/Reduce/Reduce.fs" />
3333
<Compile Include="Common/Reduce/ReduceByKey.fs" />
34-
<!--Compile Include="MatrixOperationsTests/GetTuplesTests.fs" /-->
35-
<!--Compile Include="MatrixOperationsTests/MxvTests.fs" /-->
36-
<!--Compile Include="MatrixOperationsTests/VxmTests.fs" /-->
37-
<!--Compile Include="AlgorithmsTests/BfsTests.fs" /-->
3834
<Compile Include="Vector/ZeroCreate.fs" />
3935
<Compile Include="Vector/OfList.fs" />
4036
<Compile Include="Vector/Copy.fs" />

0 commit comments

Comments
 (0)