Skip to content
#

numerical-methods

Here are 850 public repositories matching this topic...

ptiger10
ptiger10 commented Jun 3, 2019

Coming from a Python-in-Jupyter background, I notice that Tab works as you would expect (reveals all available methods/attributes), but Shift+Tab (signature hinting) does not. I could not find documentation on this. Is Shift+Tab not supported, or is my setup is incorrect?

Example:

type Foo struct {
    name string
    description string
}
func (f Foo) Qux(s string) string {
   
dbaumgaertner
dbaumgaertner commented Oct 30, 2018

The problem is as follows:

Given an optimization model part which contains elements. Gid is specified as output format. If the elements of the optimization model part are not initialized (which may happen e.g. when no internal analyzer is defined), then the function GiDOutputProcess::ExecuteBeforeSolutionLoop will produce a seg-fault when it calls

`__initialize_results --> gid_io.h line 6

arunpersaud
arunpersaud commented Jan 26, 2019

The tar-ball on github seems to have the doc and README.rst file, but the one from pypi is missing these. (Trying to package the lastest version for opensuse and the standard is to get the tar-balls from pypi). Would be great to include these again in the next version.

Thanks

GregorySchwartz
GregorySchwartz commented May 4, 2020

(#~#^) should be A B^T and vice versa for (#~^#). The documentation and function is above anb below the wrong type signature in each one respectively. Solution is to swap type signatures.

Wrong:

-- | Sparsifying A^T B
(#~#^) :: (MatrixRing (SpMatrix a), Epsilon a) =>
     SpMatrix a -> SpMatrix a -> SpMatrix a
a #~^# b = transpose a #~# b


-- | Sparsifying A B^T
(#~^#) :: (M

Improve this page

Add a description, image, and links to the numerical-methods topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the numerical-methods topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.