bf1944729ac465ffa7581733bc63ed86a2dfbeb1,scipy/sparse/linalg/eigen/arpack/setup.py,,configuration,#Any#Any#,9
Before Change
arpack_sources.extend([join("ARPACK","UTIL", "*.f")])
arpack_sources.extend([join("ARPACK","LAPACK", "*.f")])
if needs_g77_abi_wrapper(lapack_opt):
arpack_sources += [join("ARPACK", "FWRAPPERS", "wrap_veclib_f.f"),
join("ARPACK", "FWRAPPERS", "wrap_veclib_c.c")]
else:
arpack_sources += [join("ARPACK", "FWRAPPERS", "wrap_dummy.f")]
config.add_library("arpack_scipy", sources=arpack_sources,
include_dirs=[join("ARPACK", "SRC")],
depends=[join("ARPACK", "FWRAPPERS",
"wrap_veclib_f.f"),
After Change
arpack_sources.extend([join("ARPACK","UTIL", "*.f")])
arpack_sources.extend([join("ARPACK","LAPACK", "*.f")])
arpack_sources += get_g77_abi_wrappers(lapack_opt)
config.add_library("arpack_scipy", sources=arpack_sources,
include_dirs=[join("ARPACK", "SRC")])
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 8
Instances
Project Name: scipy/scipy
Commit Name: bf1944729ac465ffa7581733bc63ed86a2dfbeb1
Time: 2013-09-14
Author: pav@iki.fi
File Name: scipy/sparse/linalg/eigen/arpack/setup.py
Class Name:
Method Name: configuration
Project Name: scipy/scipy
Commit Name: bf1944729ac465ffa7581733bc63ed86a2dfbeb1
Time: 2013-09-14
Author: pav@iki.fi
File Name: scipy/sparse/linalg/isolve/setup.py
Class Name:
Method Name: configuration
Project Name: scipy/scipy
Commit Name: bf1944729ac465ffa7581733bc63ed86a2dfbeb1
Time: 2013-09-14
Author: pav@iki.fi
File Name: scipy/linalg/setup.py
Class Name:
Method Name: configuration