コード例 #1
0
ファイル: common_ops.py プロジェクト: quadpixels/taichi
    def logical_or(self, other):
        """Return the new expression of computing logical or between self and a given operand.

        Args:
            other (Any): Given operand.

        Returns:
            :class:`~taichi.lang.expr.Expr`: The computing expression of logical or."""
        _taichi_skip_traceback = 1
        return ti.logical_or(self, other)
コード例 #2
0
ファイル: common_ops.py プロジェクト: yueying/taichi
 def logical_or(self, other):
     import taichi as ti
     return ti.logical_or(self, other)
コード例 #3
0
 def logical_or(self, other):
     import taichi as ti
     _taichi_skip_traceback = 1
     return ti.logical_or(self, other)
コード例 #4
0
ファイル: common_ops.py プロジェクト: zxgtz/taichi
 def logical_or(self, other):
     _taichi_skip_traceback = 1
     return ti.logical_or(self, other)