Exemplo n.º 1
0
 def __init__(self, *args):
     if len(args) == 1 and type(args[0]).__module__ == 'Cmiss.Value.C' \
     and type(args[0]).__name__ == 'Value':
         Value.__init__(self, args[0]);
     else:
         value = apply(Cmiss.Value.C.Matrix.new, args);
         Value.__init__(self, value);
Exemplo n.º 2
0
 def __init__(self, *args):
     if len(args) == 1 and type(args[0]).__module__ == 'Cmiss.Value.C' \
     and type(args[0]).__name__ == 'Value':
         Value.__init__(self, args[0])
     else:
         value = apply(Cmiss.Value.C.FE_value_vector.new, args)
         Value.__init__(self, value)
Exemplo n.º 3
0
 def __init__(self, *args):
     if len(args) == 1 and type(args[0]).__module__ == 'Cmiss.Value.C' \
     and type(args[0]).__name__ == 'Value':
         Value.__init__(self, args[0]);
     else:
         value = apply(Cmiss.Value.C.FE_value_vector.new, args);
         Value.__init__(self, value);
Exemplo n.º 4
0
 def __init__(self, *args):
     if len(args) == 1 and type(args[0]).__module__ == 'Cmiss.Value.C' \
     and type(args[0]).__name__ == 'Value':
         Value.__init__(self, args[0]);
     else:
         value = apply(Cmiss.Value.C.Derivative_matrix.new, args);
         Value.__init__(self, value);
Exemplo n.º 5
0
 def __init__(self, *args):
     if len(args) == 1 and type(args[0]).__module__ == "Cmiss.Value.C" and type(args[0]).__name__ == "Value":
         Value.__init__(self, args[0])
     else:
         value = apply(Cmiss.Value.C.Matrix.new, args)
         Value.__init__(self, value)
Exemplo n.º 6
0
 def __init__(self, *args):
     value = apply(Cmiss.Value.C.Element_xi.new, args)
     Value.__init__(self, value)