Skip to content

Instantly share code, notes, and snippets.

@mlubin
mlubin / elec50.jl
Created June 20, 2018 20:22
demo for JuMP issue 1355
# Copyright 2018 Google LLC.
# SPDX-License-Identifier: Apache-2.0
using JuMP
splice_into_expression(ex, x) = ex
function splice_into_expression(ex::Expr, x)
if Meta.isexpr(ex, :ref)
if ex.args[1] != :x
error("Unrecognized expression $ex")
end