25 lines
627 B
Dart
25 lines
627 B
Dart
// Copyright (c) 2015 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
/// An implementation of the Cassowary constraint solving algorithm in Dart.
|
|
library cassowary;
|
|
|
|
import 'dart:collection';
|
|
import 'dart:math';
|
|
|
|
part 'constraint.dart';
|
|
part 'expression.dart';
|
|
part 'term.dart';
|
|
part 'variable.dart';
|
|
part 'equation_member.dart';
|
|
part 'constant_member.dart';
|
|
part 'solver.dart';
|
|
part 'symbol.dart';
|
|
part 'row.dart';
|
|
part 'utils.dart';
|
|
part 'result.dart';
|
|
part 'parser_exception.dart';
|
|
part 'param.dart';
|
|
part 'priority.dart';
|