Sqrt constructor

Sqrt(
  1. Expression arg
)

Creates the square root of arg.

For example, to create the square root of x:

sqrt = Sqrt(Variable('x'));

Implementation

Sqrt(super.arg) : super.sqrt();