Expression constructor

Expression(
  1. List<Term> terms,
  2. double constant
)

Creates a new linear Expression using the given terms and constant.

Implementation

Expression(this.terms, this.constant);