Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下があるとします。
proc optmodel; var x{1..3} <= 1 integer;
変数を 0 と 1 のみにしたい。上記のステートメントでこれをどのように指定しますか?
次のように簡単に指定できると考えてください。
proc optmodel; var x{1..3} binary;