~ubuntu-branches/ubuntu/wily/rheolef/wily

« back to all changes in this revision

Viewing changes to skit/plib2/csr_concat.h

  • Committer: Package Import Robot
  • Author(s): Pierre Saramito, Pierre Saramito, Sylvestre Ledru
  • Date: 2013-04-30 11:29:51 UTC
  • mfrom: (1.2.1) (11.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20130430112951-g69nuqin77t75dek
Tags: 6.4-1
[ Pierre Saramito ]
* New upstream release 6.4 (major changes):
  - new powerful c++ expressions for FEM specifications
  - configure script improved (portability increased)
  - minor bug fixes
* control:
  - all architectures are considered (armel & armhf are back)
  - no more circular-dependency librheolef-dev <--> rheolef
* rules: add security compiler flags (hardening and -W,-l,relro)
* watch: include an updated version, thanks to B. Martens <bartm@debian.org>
* copyright: various file format fixes

[ Sylvestre Ledru ]
*  Standards-Version updated to 3.9.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
143
143
    std::vector<distributor>&                            col_start_by_component) const;
144
144
 
145
145
 void build_csr_pass2 (
146
 
          asr<T,M>&                       a,
147
 
          const std::vector<distributor>& col_start_by_component,
148
 
          size_type                       row_start_comp_i = 0,
149
 
          size_type                       row_start_comp_dis_i = 0) const;
 
146
    asr<T,M>&                                            a,
 
147
    const std::vector<std::pair<size_type,size_type> >&  col_sizes,
 
148
    const std::vector<distributor>&                      col_start_by_component,
 
149
    size_type                                            row_start_comp_i = 0,
 
150
    size_type                                            row_start_comp_dis_i = 0) const;
150
151
 
151
152
 csr<T,M> build_csr () const;
152
153