line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
8
|
|
|
8
|
|
1252724
|
use strict; |
|
8
|
|
|
|
|
96
|
|
|
8
|
|
|
|
|
232
|
|
2
|
8
|
|
|
8
|
|
48
|
use warnings; |
|
8
|
|
|
|
|
20
|
|
|
8
|
|
|
|
|
365
|
|
3
|
|
|
|
|
|
|
package Graphics::Layout::Kiwisolver; |
4
|
|
|
|
|
|
|
# ABSTRACT: API for Kiwisolver constraint solver |
5
|
|
|
|
|
|
|
$Graphics::Layout::Kiwisolver::VERSION = '0.002'; |
6
|
8
|
|
|
8
|
|
3415
|
use XS::Framework; |
|
8
|
|
|
|
|
106798
|
|
|
8
|
|
|
|
|
255
|
|
7
|
8
|
|
|
8
|
|
143
|
use XS::Loader; |
|
8
|
|
|
|
|
23
|
|
|
8
|
|
|
|
|
262
|
|
8
|
|
|
|
|
|
|
XS::Loader::load(); |
9
|
|
|
|
|
|
|
|
10
|
8
|
|
|
8
|
|
3263
|
use Graphics::Layout::Kiwisolver::Variable; |
|
8
|
|
|
|
|
24
|
|
|
8
|
|
|
|
|
231
|
|
11
|
8
|
|
|
8
|
|
2993
|
use Graphics::Layout::Kiwisolver::Term; |
|
8
|
|
|
|
|
27
|
|
|
8
|
|
|
|
|
228
|
|
12
|
8
|
|
|
8
|
|
3097
|
use Graphics::Layout::Kiwisolver::Expression; |
|
8
|
|
|
|
|
24
|
|
|
8
|
|
|
|
|
217
|
|
13
|
8
|
|
|
8
|
|
3013
|
use Graphics::Layout::Kiwisolver::Constraint; |
|
8
|
|
|
|
|
21
|
|
|
8
|
|
|
|
|
222
|
|
14
|
8
|
|
|
8
|
|
3072
|
use Graphics::Layout::Kiwisolver::Strength; |
|
8
|
|
|
|
|
24
|
|
|
8
|
|
|
|
|
259
|
|
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
1; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
__END__ |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=pod |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=encoding UTF-8 |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 NAME |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
Graphics::Layout::Kiwisolver - API for Kiwisolver constraint solver |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 VERSION |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
version 0.002 |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 SEE ALSO |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 AUTHOR |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Zakariyya Mughal <zmughal@cpan.org> |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
This software is copyright (c) 2019 by Zakariyya Mughal. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
43
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=cut |