Skip to content

Commit

Permalink
Reorganize Aardvark.Base.FSharp project
Browse files Browse the repository at this point in the history
  • Loading branch information
hyazinthh committed Oct 30, 2023
1 parent 68c687f commit 330c27d
Show file tree
Hide file tree
Showing 23 changed files with 28 additions and 27 deletions.
51 changes: 26 additions & 25 deletions src/Aardvark.Base.FSharp/Aardvark.Base.FSharp.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,28 @@
<OutputPath>..\..\bin\Release</OutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="Prelude\Logging.fs" />
<Compile Include="Prelude\FSLibExtensions.fs" />
<Compile Include="Prelude\Math.fs" />
<Compile Include="Prelude\Measures.fs" />
<Compile Include="Prelude\Lens.fs" />
<Compile Include="Prelude\Monoid.fs" />
<Compile Include="Prelude\AverageWindow.fs" />
<Compile Include="Interop\Converters.fs" />
<Compile Include="Interop\Dictionary.fs" />
<Compile Include="Interop\Symbol.fs" />
<Compile Include="Interop\Vectors.fs" />
<Compile Include="Interop\Matrix.fs" />
<Compile Include="Interop\String.fs" />
<Compile Include="Interop\SortedSet.fs" />
<Compile Include="Interop\HashSet.fs" />
<Compile Include="Interop\CSharpList.fs" />
<Compile Include="Interop\ArraySegment.fs" />
<Compile Include="Utilities\Logging.fs" />
<Compile Include="Utilities\Interop\FSLibExtensions.fs" />
<Compile Include="Utilities\Interop\Dictionary.fs" />
<Compile Include="Utilities\Interop\Symbol.fs" />
<Compile Include="Utilities\Interop\String.fs" />
<Compile Include="Utilities\Interop\Strings.fs" />
<Compile Include="Utilities\Interop\SortedSet.fs" />
<Compile Include="Utilities\Interop\HashSet.fs" />
<Compile Include="Utilities\Interop\CSharpList.fs" />
<Compile Include="Utilities\Interop\ArraySegment.fs" />
<Compile Include="Utilities\Pickler\FsPicklerExtensions.fs" />
<Compile Include="Utilities\Pickler\AdaptivePicklers.fs" />
<Compile Include="Utilities\Measures.fs" />
<Compile Include="Utilities\Lens.fs" />
<Compile Include="Utilities\Monoid.fs" />
<Compile Include="Utilities\Monads.fs" />
<Compile Include="Math\Math.fs" />
<Compile Include="Math\Vectors.fs" />
<Compile Include="Math\Matrix.fs" />
<Compile Include="Math\SVDM33f.fs" />
<Compile Include="Math\AverageWindow.fs" />
<Compile Include="Math\Converters.fs" />
<Compile Include="Datastructures\Mutable\FixedSizeArray.fs" />
<Compile Include="Datastructures\Mutable\Order.fs" />
<Compile Include="Datastructures\Mutable\OrderMaintenance.fs" />
Expand Down Expand Up @@ -69,23 +74,19 @@
<Compile Include="Runtime\Fragments.fs" />
<Compile Include="Runtime\CustomSchedulers.fs" />
<Compile Include="Runtime\Caches.fs" />
<Compile Include="SVDM33f.fs" />
<Compile Include="String.fs" />
<Compile Include="Runtime.fs" />
<Compile Include="Control.fs" />
<Compile Include="FsPicklerExtensions.fs" />
<Compile Include="AdaptivePicklers.fs" />
<Compile Include="Ag.fs" />
<None Include="paket.references" />
<Compile Include="Native\BlobStore.fs" />
<Compile Include="Native\Pointer.fs" />
<Compile Include="Native\Memory.fs" />
<Compile Include="Native\FileTable.fs" />
<Compile Include="Native\Manager.fs" />
<Compile Include="Native\Store.fs" />
<Compile Include="Runtime.fs" />
<Compile Include="Ag.fs" />
<None Include="paket.references" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Aardvark.Base\Aardvark.Base.csproj" />
</ItemGroup>
<ItemGroup />
<Import Project="..\..\.paket\Paket.Restore.targets" />
</Project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ type MicroTime =
new (ts : TimeSpan) = { TotalNanoseconds = ts.Ticks * (1000000000L / TimeSpan.TicksPerSecond) }
new (ns : float) =
{ TotalNanoseconds =
if isFinite ns then int64 ns
elif isPositiveInfinity ns then Int64.MaxValue
if Fun.IsFinite ns then int64 ns
elif Fun.IsPositiveInfinity ns then Int64.MaxValue
else Int64.MinValue
}

Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 330c27d

Please sign in to comment.