mirror of
				https://github.com/Z3Prover/z3
				synced 2025-11-03 21:09:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			No EOL
		
	
	
		
			510 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			No EOL
		
	
	
		
			510 B
		
	
	
	
		
			C#
		
	
	
	
	
	
 | 
						||
/*++
 | 
						||
Copyright (c) 2015 Microsoft Corporation
 | 
						||
 | 
						||
--*/
 | 
						||
 | 
						||
using Microsoft.SolverFoundation.Services;
 | 
						||
using System;
 | 
						||
 | 
						||
namespace Microsoft.SolverFoundation.Plugin.Z3
 | 
						||
{
 | 
						||
    public class Z3TermParams : Z3BaseParams
 | 
						||
    {
 | 
						||
        public Z3TermParams() : base() { }
 | 
						||
 | 
						||
        public Z3TermParams(Directive directive) : base(directive) { }
 | 
						||
 | 
						||
        public Z3TermParams(Func<bool> queryAbortFunction) : base(queryAbortFunction) { }
 | 
						||
 | 
						||
        public Z3TermParams(Z3BaseParams z3Parameters) : base(z3Parameters) { }
 | 
						||
    }
 | 
						||
 | 
						||
} |