Skip to content

Commit

Permalink
#380: make basic configurations for Z3 public.
Browse files Browse the repository at this point in the history
Let the user decide what to load,
e.g. on a minimal system only load for one specific OS and arch.
  • Loading branch information
kfriedberger committed Oct 12, 2024
1 parent f794371 commit 6639132
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions solvers_ivy_conf/ivy_z3.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,20 @@ SPDX-License-Identifier: Apache-2.0
<!-- default config, provides only x64 for backwards-compatibility -->
<conf name="solver-z3" extends="solver-z3-x64"/>

<!-- public main configurations -->
<!-- main configurations -->
<conf name="solver-z3-x64" extends="solver-z3-linux-x64,solver-z3-windows-x64,solver-z3-macos-x64"/>
<conf name="solver-z3-arm64" extends="solver-z3-linux-arm64,solver-z3-windows-arm64,solver-z3-macos-arm64"/>
<conf name="sources"/>
<conf name="javadoc"/>

<!-- private basic configurations -->
<conf name="solver-z3-linux-x64" extends="solver-z3-common" visibility="private"/>
<conf name="solver-z3-linux-arm64" extends="solver-z3-common" visibility="private"/>
<conf name="solver-z3-windows-x64" extends="solver-z3-common" visibility="private"/>
<conf name="solver-z3-windows-arm64" extends="solver-z3-common" visibility="private"/>
<conf name="solver-z3-macos-x64" extends="solver-z3-common" visibility="private"/>
<conf name="solver-z3-macos-arm64" extends="solver-z3-common" visibility="private"/>
<!-- basic configurations -->
<conf name="solver-z3-linux-x64" extends="solver-z3-common"/>
<conf name="solver-z3-linux-arm64" extends="solver-z3-common"/>
<conf name="solver-z3-windows-x64" extends="solver-z3-common"/>
<conf name="solver-z3-windows-arm64" extends="solver-z3-common"/>
<conf name="solver-z3-macos-x64" extends="solver-z3-common"/>
<conf name="solver-z3-macos-arm64" extends="solver-z3-common"/>

<conf name="solver-z3-common" visibility="private"/>
</configurations>

Expand Down

0 comments on commit 6639132

Please sign in to comment.