-
Notifications
You must be signed in to change notification settings - Fork 2
/
RInGen.fsproj
53 lines (48 loc) · 1.88 KB
/
RInGen.fsproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<GenerateProgramFile>false</GenerateProgramFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugType>full</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Argu" Version="6.1.1" />
<PackageReference Include="CsvHelper" Version="15.0.5" />
</ItemGroup>
<ItemGroup>
<Compile Include="Prelude.fs" />
<Compile Include="Terms.fs" />
<Compile Include="Atoms.fs" />
<Compile Include="FOL.fs" />
<Compile Include="Rule.fs" />
<Compile Include="Options.fs" />
<Compile Include="Programs.fs" />
<Compile Include="Relativization.fs" />
<Compile Include="Operations.fs" />
<Compile Include="SubstituteOperations.fs" />
<Compile Include="BoolAxiomatization.fs" />
<Compile Include="IntToNat.fs" />
<Compile Include="ADTs.fs" />
<Compile Include="Arrays.fs" />
<Compile Include="Unifier.fs" />
<Compile Include="Simplification.fs" />
<Compile Include="Synchronization.fs" />
<Compile Include="FiniteModels.fs" />
<Compile Include="SolverResult.fs" />
<Compile Include="TtaTransform.fs" />
<Compile Include="ADTExtensions.fs" />
<Compile Include="Context.fs" />
<Compile Include="ClauseTransform.fs" />
<Compile Include="PrintToProlog.fs" />
<Compile Include="Transformers.fs" />
<Compile Include="Statistics.fs" />
<Compile Include="ResultTable.fs" />
<Compile Include="Solvers.fs" />
<Compile Include="ConsoleRunner.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="SMTLIB2\SMTLIB2\SMTLIB2.fsproj" />
</ItemGroup>
</Project>