~ubuntu-branches/ubuntu/vivid/ffc/vivid

« back to all changes in this revision

Viewing changes to sandbox/swig/optimise.i

  • Committer: Package Import Robot
  • Author(s): Johannes Ring
  • Date: 2014-01-10 13:56:45 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20140110135645-4ozcd71y1oggj44z
Tags: 1.3.0-1
* New upstream release.
* debian/watch: Update URL for move to Bitbucket.
* debian/docs: README -> README.rst and remove TODO.
* debian/control:
  - Add python-numpy to Build-Depends.
  - Replace python-all with python-all-dev in Build-Depends.
  - Add ${shlibs:Depends} to Depends.
  - Change to Architecture: any.
  - Bump Standards-Version to 3.9.5 (no changes needed).
* debian/rules: Call dh_numpy in override_dh_python2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
%module optimise
2
 
 
3
 
%{
4
 
#include <vector>
5
 
%}
6
 
 
7
 
%{
8
 
#include "optimise.h"
9
 
%}
10
 
 
11
 
%include std_string.i
12
 
%include std_vector.i
13
 
 
14
 
%template(vector_int)     std::vector<int>;
15
 
%typedef std::vector<int> vector_int;
16
 
 
17
 
%template(vector_symbol)     std::vector<Symbol>;
18
 
%typedef std::vector<Symbol> vector_symbol;
19
 
 
20
 
%include "optimise.h"
21
 
 
22