示例#1
0
文件: FuncDecl.cs 项目: jawline/z3
 internal Parameter(Z3_parameter_kind k, string r)
 {
     this.kind = k;
     this.r = r;
 }
示例#2
0
文件: FuncDecl.cs 项目: jawline/z3
 internal Parameter(Z3_parameter_kind k, AST a)
 {
     this.kind = k;
     this.ast = a;
 }
示例#3
0
文件: FuncDecl.cs 项目: jawline/z3
 internal Parameter(Z3_parameter_kind k, FuncDecl fd)
 {
     this.kind = k;
     this.fd = fd;
 }
示例#4
0
文件: FuncDecl.cs 项目: jawline/z3
 internal Parameter(Z3_parameter_kind k, Symbol s)
 {
     this.kind = k;
     this.sym = s;
 }
示例#5
0
文件: FuncDecl.cs 项目: jawline/z3
 internal Parameter(Z3_parameter_kind k, Sort s)
 {
     this.kind = k;
     this.srt = s;
 }
示例#6
0
文件: FuncDecl.cs 项目: jawline/z3
 internal Parameter(Z3_parameter_kind k, int i)
 {
     this.kind = k;
     this.i = i;
 }
示例#7
0
文件: FuncDecl.cs 项目: jawline/z3
 internal Parameter(Z3_parameter_kind k, double d)
 {
     this.kind = k;
     this.d = d;
 }
示例#8
0
 internal Parameter(Z3_parameter_kind k, FuncDecl fd)
 {
     this.kind = k;
     this.fd   = fd;
 }
示例#9
0
 internal Parameter(Z3_parameter_kind k, string r)
 {
     this.kind = k;
     this.r    = r;
 }
示例#10
0
 internal Parameter(Z3_parameter_kind k, AST a)
 {
     this.kind = k;
     this.ast  = a;
 }
示例#11
0
 internal Parameter(Z3_parameter_kind k, Sort s)
 {
     this.kind = k;
     this.srt  = s;
 }
示例#12
0
 internal Parameter(Z3_parameter_kind k, Symbol s)
 {
     this.kind = k;
     this.sym  = s;
 }
示例#13
0
 internal Parameter(Z3_parameter_kind k, double d)
 {
     this.kind = k;
     this.d    = d;
 }
示例#14
0
 internal Parameter(Z3_parameter_kind k, int i)
 {
     this.kind = k;
     this.i    = i;
 }