We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca53242 commit 5c02127Copy full SHA for 5c02127
docs/src/manual/types.md
@@ -85,6 +85,11 @@ solve!(problem, SCS.Optimizer)
85
evaluate(expr)
86
```
87
88
+!!! warning
89
+ Avoid using Julia's broadcasting (the `.` operator). As an example, the
90
+ expression `-log(1.0 .+ A * x)` will fail while `-log(1.0 + A * x)` will
91
+ succeed.
92
+
93
## Constraints
94
95
*Constraints* in Convex.jl are declared using the standard comparison
0 commit comments