[sage-devel] Re: What in Sage uses Boost ? And who maintains it ?

2015-11-13 Thread Emmanuel Charpentier
I ported 1.58.0 headers in Trac #19582 
, which needs review. 

HTH,

__
Emmanuel Charpentier

Le vendredi 13 novembre 2015 07:38:53 UTC+1, Emmanuel Charpentier a écrit :
>
> FYI,
>
> Just for the hell of it, I *did* update boost_cropped to 1.59.0 in a 
> private branch. The resultant Sage passes ptestlong with no errors, and 
> *can* run rstan with no error.
>
> This should be considered for Sage itself (maybe with 1.58.0, which is the 
> version that many distros (including Debian and Ubuntu) and other packages 
> (including R) are up to now).
>
> Porting the whole of Boost should also be considered, but maybe after 
> considering what uses the non-headers parts of Boost. AFAICT, The R package 
> is headers-only.
>
> HTH,
>
> --
> Emmanuel Charpentier
>
> Le mercredi 11 novembre 2015 13:06:21 UTC+1, Emmanuel Charpentier a écrit :
>>
>> Dear list,
>>
>> I just discovered that Sage installs a Boost library (it's, curiously, 
>> called boost-cropped, but according to its SPKG.txt, currently contains all 
>> of Boost, without patches).
>>
>> The current version is 1.52. I discovered that this version is too old at 
>> least for the rstan package of R (a diabolically efficient MCMC sampler), 
>> which needs Boost>=1.58. See this thread on stan-users 
>>  for 
>> details.
>>
>> Hence two questions :
>>
>> 1) What in Sage uses Boost ?
>>
>> 2) Is someone maintaining it ?
>>
>> Sincerely yours,
>>
>> --
>> Emmanuel Charpentier
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.


[sage-devel] Re: What in Sage uses Boost ? And who maintains it ?

2015-11-12 Thread Emmanuel Charpentier
FYI,

Just for the hell of it, I *did* update boost_cropped to 1.59.0 in a 
private branch. The resultant Sage passes ptestlong with no errors, and 
*can* run rstan with no error.

This should be considered for Sage itself (maybe with 1.58.0, which is the 
version that many distros (including Debian and Ubuntu) and other packages 
(including R) are up to now).

Porting the whole of Boost should also be considered, but maybe after 
considering what uses the non-headers parts of Boost. AFAICT, The R package 
is headers-only.

HTH,

--
Emmanuel Charpentier

Le mercredi 11 novembre 2015 13:06:21 UTC+1, Emmanuel Charpentier a écrit :
>
> Dear list,
>
> I just discovered that Sage installs a Boost library (it's, curiously, 
> called boost-cropped, but according to its SPKG.txt, currently contains all 
> of Boost, without patches).
>
> The current version is 1.52. I discovered that this version is too old at 
> least for the rstan package of R (a diabolically efficient MCMC sampler), 
> which needs Boost>=1.58. See this thread on stan-users 
>  for 
> details.
>
> Hence two questions :
>
> 1) What in Sage uses Boost ?
>
> 2) Is someone maintaining it ?
>
> Sincerely yours,
>
> --
> Emmanuel Charpentier
>

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.


Re: [sage-devel] Re: What in Sage uses Boost ? And who maintains it ?

2015-11-12 Thread John Cremona
On 12 November 2015 at 14:23, Francois Bissey
 wrote:
>
>> On 13/11/2015, at 04:08, Dima Pasechnik  wrote:
>>
>>
>>
>> On Wednesday, 11 November 2015 20:30:22 UTC, François wrote:
>> There is a ticket with a more recent boost:
>> http://trac.sagemath.org/ticket/17966
>>
>> It basically works on linux. It needs love on OS X because
>> boost's build system has no idea there is such a thing as
>> "install_name" on OS X and it proves being one of the fatal
>> problems on "El Capitan".
>>
>> isn't the bulk of boost just a bunch of C++ hearder files?
>> Thus, I don't understand how these can be broken on OSX…
>
> The bulk yes, but there are a few libraries. Note that sage is currently
> only using boost headers (the spkg is boost_cropped) but some
> packages could use the libraries now (eclib) and some could in the
> future.

The use of boost in eclib is very minor and optional, and not relevant
for the parts of eclib which Sage uses.  It would be easy to configure
eclib to not use boost.  But other packages might have it as a serious
dependency.

John

>
> Anyway it turns out this thread was not about full boost but boost_cropped.
>
> François
>
> --
> You received this message because you are subscribed to the Google Groups 
> "sage-devel" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to sage-devel+unsubscr...@googlegroups.com.
> To post to this group, send email to sage-devel@googlegroups.com.
> Visit this group at http://groups.google.com/group/sage-devel.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.


Re: [sage-devel] Re: What in Sage uses Boost ? And who maintains it ?

2015-11-12 Thread Francois Bissey

> On 13/11/2015, at 04:08, Dima Pasechnik  wrote:
> 
> 
> 
> On Wednesday, 11 November 2015 20:30:22 UTC, François wrote:
> There is a ticket with a more recent boost: 
> http://trac.sagemath.org/ticket/17966 
> 
> It basically works on linux. It needs love on OS X because 
> boost's build system has no idea there is such a thing as 
> "install_name" on OS X and it proves being one of the fatal 
> problems on "El Capitan". 
> 
> isn't the bulk of boost just a bunch of C++ hearder files?
> Thus, I don't understand how these can be broken on OSX…

The bulk yes, but there are a few libraries. Note that sage is currently
only using boost headers (the spkg is boost_cropped) but some
packages could use the libraries now (eclib) and some could in the 
future.

Anyway it turns out this thread was not about full boost but boost_cropped.

François

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.


Re: [sage-devel] Re: What in Sage uses Boost ? And who maintains it ?

2015-11-12 Thread Dima Pasechnik


On Wednesday, 11 November 2015 20:30:22 UTC, François wrote:
>
> There is a ticket with a more recent boost: 
> http://trac.sagemath.org/ticket/17966 
>
> It basically works on linux. It needs love on OS X because 
> boost's build system has no idea there is such a thing as 
> "install_name" on OS X and it proves being one of the fatal 
> problems on "El Capitan". 
>

isn't the bulk of boost just a bunch of C++ hearder files?
Thus, I don't understand how these can be broken on OSX...
 

>
> Other things needed is a spkg-src script to purge the tarball 
> from heavy stuff that's not used. 
>
> Francois 
>
> On 11/12/15 09:14, Volker Braun wrote: 
> > The script can also be used in that case, just download it by hand and 
> > leave out the --url=... 
> > 
> > 
> > 
> > On Wednesday, November 11, 2015 at 12:06:39 PM UTC-8, Emmanuel 
> > Charpentier wrote: 
> > 
> > 
> > 
> > Le mercredi 11 novembre 2015 16:58:35 UTC+1, Volker Braun a écrit : 
> > 
> > PS: with http://trac.sagemath.org/ticket/19470 
> >  updating packages would 
> > get much easier, just run 
> > 
> > sage --package update boost 1.58 --url=... 
> > 
> > 
> > *VERY*  nice idea ! But it can't be applied to Boost, which is 
> > distributed via @#!&! Sourceforge and therefore has no stable URL... 
> > 
> > I'll try to do that "à l'ancienne"... 
> > 
> > HTH, 
> > 
> > -- 
> > Emmanuel Charpentier 
> > 
> > 
> > to download the tarball and update the relevant configuration 
> > files in Sage 
> > 
> > 
> > 
> > On Wednesday, November 11, 2015 at 7:48:26 AM UTC-8, Volker 
> > Braun wrote: 
> > 
> > egrep -r boost src/sage 
> > 
> > Sage graphs also use boost 
> > 
> > If you need a newer version the go ahead and package it! 
> > 
> > 
> > On Wednesday, November 11, 2015 at 4:06:21 AM UTC-8, 
> > Emmanuel Charpentier wrote: 
> > 
> > Dear list, 
> > 
> > I just discovered that Sage installs a Boost library 
> > (it's, curiously, called boost-cropped, but according to 
> > its SPKG.txt, currently contains all of Boost, without 
> > patches). 
> > 
> > The current version is 1.52. I discovered that this 
> > version is too old at least for the rstan package of R 
> > (a diabolically efficient MCMC sampler), which needs 
> > Boost>=1.58. See this thread on stan-users 
> > <
> https://groups.google.com/forum/#!topic/stan-users/XygoXG0SoTM> 
> > for details. 
> > 
> > Hence two questions : 
> > 
> > 1) What in Sage uses Boost ? 
> > 
> > 2) Is someone maintaining it ? 
> > 
> > Sincerely yours, 
> > 
> > -- 
> > Emmanuel Charpentier 
>
> > To post to this group, send email to sage-...@googlegroups.com 
>  
> > . 
> > Visit this group at http://groups.google.com/group/sage-devel. 
> > For more options, visit https://groups.google.com/d/optout. 
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.


Re: [sage-devel] Re: What in Sage uses Boost ? And who maintains it ?

2015-11-11 Thread Emmanuel Charpentier
Reading Trac#17966  (which, BTW, I 
missed when searching Trac for "Boost") led me to conclude that this 
updating should be distinct of the question of whether to include or not 
the whole Boost, which depends on issues I do not understand. The ticket I 
opened to update this library has been closed. Therefore, I won't touch it.

HTH,

--
Emmanuel Charpentier

Le mercredi 11 novembre 2015 21:30:22 UTC+1, François a écrit :
>
> There is a ticket with a more recent boost: 
> http://trac.sagemath.org/ticket/17966 
>
> It basically works on linux. It needs love on OS X because 
> boost's build system has no idea there is such a thing as 
> "install_name" on OS X and it proves being one of the fatal 
> problems on "El Capitan". 
>
> Other things needed is a spkg-src script to purge the tarball 
> from heavy stuff that's not used. 
>
> Francois 
>
> On 11/12/15 09:14, Volker Braun wrote: 
> > The script can also be used in that case, just download it by hand and 
> > leave out the --url=... 
> > 
> > 
> > 
> > On Wednesday, November 11, 2015 at 12:06:39 PM UTC-8, Emmanuel 
> > Charpentier wrote: 
> > 
> > 
> > 
> > Le mercredi 11 novembre 2015 16:58:35 UTC+1, Volker Braun a écrit : 
> > 
> > PS: with http://trac.sagemath.org/ticket/19470 
> >  updating packages would 
> > get much easier, just run 
> > 
> > sage --package update boost 1.58 --url=... 
> > 
> > 
> > *VERY*  nice idea ! But it can't be applied to Boost, which is 
> > distributed via @#!&! Sourceforge and therefore has no stable URL... 
> > 
> > I'll try to do that "à l'ancienne"... 
> > 
> > HTH, 
> > 
> > -- 
> > Emmanuel Charpentier 
> > 
> > 
> > to download the tarball and update the relevant configuration 
> > files in Sage 
> > 
> > 
> > 
> > On Wednesday, November 11, 2015 at 7:48:26 AM UTC-8, Volker 
> > Braun wrote: 
> > 
> > egrep -r boost src/sage 
> > 
> > Sage graphs also use boost 
> > 
> > If you need a newer version the go ahead and package it! 
> > 
> > 
> > On Wednesday, November 11, 2015 at 4:06:21 AM UTC-8, 
> > Emmanuel Charpentier wrote: 
> > 
> > Dear list, 
> > 
> > I just discovered that Sage installs a Boost library 
> > (it's, curiously, called boost-cropped, but according to 
> > its SPKG.txt, currently contains all of Boost, without 
> > patches). 
> > 
> > The current version is 1.52. I discovered that this 
> > version is too old at least for the rstan package of R 
> > (a diabolically efficient MCMC sampler), which needs 
> > Boost>=1.58. See this thread on stan-users 
> > <
> https://groups.google.com/forum/#!topic/stan-users/XygoXG0SoTM> 
> > for details. 
> > 
> > Hence two questions : 
> > 
> > 1) What in Sage uses Boost ? 
> > 
> > 2) Is someone maintaining it ? 
> > 
> > Sincerely yours, 
> > 
> > -- 
> > Emmanuel Charpentier 
> > 
> > -- 
> > You received this message because you are subscribed to the Google 
> > Groups "sage-devel" group. 
> > To unsubscribe from this group and stop receiving emails from it, send 
> > an email to sage-devel+...@googlegroups.com  
> > . 
> > To post to this group, send email to sage-...@googlegroups.com 
>  
> > . 
> > Visit this group at http://groups.google.com/group/sage-devel. 
> > For more options, visit https://groups.google.com/d/optout. 
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.


Re: [sage-devel] Re: What in Sage uses Boost ? And who maintains it ?

2015-11-11 Thread François Bissey

There is a ticket with a more recent boost:
http://trac.sagemath.org/ticket/17966

It basically works on linux. It needs love on OS X because
boost's build system has no idea there is such a thing as
"install_name" on OS X and it proves being one of the fatal
problems on "El Capitan".

Other things needed is a spkg-src script to purge the tarball
from heavy stuff that's not used.

Francois

On 11/12/15 09:14, Volker Braun wrote:

The script can also be used in that case, just download it by hand and
leave out the --url=...



On Wednesday, November 11, 2015 at 12:06:39 PM UTC-8, Emmanuel
Charpentier wrote:



Le mercredi 11 novembre 2015 16:58:35 UTC+1, Volker Braun a écrit :

PS: with http://trac.sagemath.org/ticket/19470
 updating packages would
get much easier, just run

sage --package update boost 1.58 --url=...


*VERY*  nice idea ! But it can't be applied to Boost, which is
distributed via @#!&! Sourceforge and therefore has no stable URL...

I'll try to do that "à l'ancienne"...

HTH,

--
Emmanuel Charpentier


to download the tarball and update the relevant configuration
files in Sage



On Wednesday, November 11, 2015 at 7:48:26 AM UTC-8, Volker
Braun wrote:

egrep -r boost src/sage

Sage graphs also use boost

If you need a newer version the go ahead and package it!


On Wednesday, November 11, 2015 at 4:06:21 AM UTC-8,
Emmanuel Charpentier wrote:

Dear list,

I just discovered that Sage installs a Boost library
(it's, curiously, called boost-cropped, but according to
its SPKG.txt, currently contains all of Boost, without
patches).

The current version is 1.52. I discovered that this
version is too old at least for the rstan package of R
(a diabolically efficient MCMC sampler), which needs
Boost>=1.58. See this thread on stan-users

for details.

Hence two questions :

1) What in Sage uses Boost ?

2) Is someone maintaining it ?

Sincerely yours,

--
Emmanuel Charpentier

--
You received this message because you are subscribed to the Google
Groups "sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send
an email to sage-devel+unsubscr...@googlegroups.com
.
To post to this group, send email to sage-devel@googlegroups.com
.
Visit this group at http://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.


--
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.


[sage-devel] Re: What in Sage uses Boost ? And who maintains it ?

2015-11-11 Thread Volker Braun
The script can also be used in that case, just download it by hand and 
leave out the --url=...



On Wednesday, November 11, 2015 at 12:06:39 PM UTC-8, Emmanuel Charpentier 
wrote:
>
>
>
> Le mercredi 11 novembre 2015 16:58:35 UTC+1, Volker Braun a écrit :
>>
>> PS: with http://trac.sagemath.org/ticket/19470 updating packages would 
>> get much easier, just run
>>
>> sage --package update boost 1.58 --url=...
>>
>
> *VERY*  nice idea ! But it can't be applied to Boost, which is distributed 
> via @#!&! Sourceforge and therefore has no stable URL...
>
> I'll try to do that "à l'ancienne"...
>
> HTH,
>
> --
> Emmanuel Charpentier
>
>
>> to download the tarball and update the relevant configuration files in 
>> Sage
>>
>>
>>
>> On Wednesday, November 11, 2015 at 7:48:26 AM UTC-8, Volker Braun wrote:
>>>
>>> egrep -r boost src/sage
>>>
>>> Sage graphs also use boost
>>>
>>> If you need a newer version the go ahead and package it!
>>>
>>>
>>> On Wednesday, November 11, 2015 at 4:06:21 AM UTC-8, Emmanuel 
>>> Charpentier wrote:

 Dear list,

 I just discovered that Sage installs a Boost library (it's, curiously, 
 called boost-cropped, but according to its SPKG.txt, currently contains 
 all 
 of Boost, without patches).

 The current version is 1.52. I discovered that this version is too old 
 at least for the rstan package of R (a diabolically efficient MCMC 
 sampler), which needs Boost>=1.58. See this thread on stan-users 
  for 
 details.

 Hence two questions :

 1) What in Sage uses Boost ?

 2) Is someone maintaining it ?

 Sincerely yours,

 --
 Emmanuel Charpentier

>>>

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.


[sage-devel] Re: What in Sage uses Boost ? And who maintains it ?

2015-11-11 Thread Emmanuel Charpentier


Le mercredi 11 novembre 2015 16:58:35 UTC+1, Volker Braun a écrit :
>
> PS: with http://trac.sagemath.org/ticket/19470 updating packages would 
> get much easier, just run
>
> sage --package update boost 1.58 --url=...
>

*VERY*  nice idea ! But it can't be applied to Boost, which is distributed 
via @#!&! Sourceforge and therefore has no stable URL...

I'll try to do that "à l'ancienne"...

HTH,

--
Emmanuel Charpentier


> to download the tarball and update the relevant configuration files in Sage
>
>
>
> On Wednesday, November 11, 2015 at 7:48:26 AM UTC-8, Volker Braun wrote:
>>
>> egrep -r boost src/sage
>>
>> Sage graphs also use boost
>>
>> If you need a newer version the go ahead and package it!
>>
>>
>> On Wednesday, November 11, 2015 at 4:06:21 AM UTC-8, Emmanuel Charpentier 
>> wrote:
>>>
>>> Dear list,
>>>
>>> I just discovered that Sage installs a Boost library (it's, curiously, 
>>> called boost-cropped, but according to its SPKG.txt, currently contains all 
>>> of Boost, without patches).
>>>
>>> The current version is 1.52. I discovered that this version is too old 
>>> at least for the rstan package of R (a diabolically efficient MCMC 
>>> sampler), which needs Boost>=1.58. See this thread on stan-users 
>>>  for 
>>> details.
>>>
>>> Hence two questions :
>>>
>>> 1) What in Sage uses Boost ?
>>>
>>> 2) Is someone maintaining it ?
>>>
>>> Sincerely yours,
>>>
>>> --
>>> Emmanuel Charpentier
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.


[sage-devel] Re: What in Sage uses Boost ? And who maintains it ?

2015-11-11 Thread Volker Braun
PS: with http://trac.sagemath.org/ticket/19470 updating packages would get 
much easier, just run

sage --package update boost 1.58 --url=...

to download the tarball and update the relevant configuration files in Sage



On Wednesday, November 11, 2015 at 7:48:26 AM UTC-8, Volker Braun wrote:
>
> egrep -r boost src/sage
>
> Sage graphs also use boost
>
> If you need a newer version the go ahead and package it!
>
>
> On Wednesday, November 11, 2015 at 4:06:21 AM UTC-8, Emmanuel Charpentier 
> wrote:
>>
>> Dear list,
>>
>> I just discovered that Sage installs a Boost library (it's, curiously, 
>> called boost-cropped, but according to its SPKG.txt, currently contains all 
>> of Boost, without patches).
>>
>> The current version is 1.52. I discovered that this version is too old at 
>> least for the rstan package of R (a diabolically efficient MCMC sampler), 
>> which needs Boost>=1.58. See this thread on stan-users 
>>  for 
>> details.
>>
>> Hence two questions :
>>
>> 1) What in Sage uses Boost ?
>>
>> 2) Is someone maintaining it ?
>>
>> Sincerely yours,
>>
>> --
>> Emmanuel Charpentier
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.


[sage-devel] Re: What in Sage uses Boost ? And who maintains it ?

2015-11-11 Thread Volker Braun
egrep -r boost src/sage

Sage graphs also use boost

If you need a newer version the go ahead and package it!


On Wednesday, November 11, 2015 at 4:06:21 AM UTC-8, Emmanuel Charpentier 
wrote:
>
> Dear list,
>
> I just discovered that Sage installs a Boost library (it's, curiously, 
> called boost-cropped, but according to its SPKG.txt, currently contains all 
> of Boost, without patches).
>
> The current version is 1.52. I discovered that this version is too old at 
> least for the rstan package of R (a diabolically efficient MCMC sampler), 
> which needs Boost>=1.58. See this thread on stan-users 
>  for 
> details.
>
> Hence two questions :
>
> 1) What in Sage uses Boost ?
>
> 2) Is someone maintaining it ?
>
> Sincerely yours,
>
> --
> Emmanuel Charpentier
>

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.


Re: [sage-devel] Re: What in Sage uses Boost ? And who maintains it ?

2015-11-11 Thread 'Julien Puydt' via sage-devel
Polybori is now brial if I remember well.

Snark on? #sagemathLe 11 nov. 2015 15:21, Simon King  
a écrit :
>
> Hi! 
>
> On 2015-11-11, 'Martin Albrecht' via sage-devel  
> wrote: 
> >> 1) What in Sage uses Boost ? 
> > 
> > I know this one: PolyBoRi. 
> >  
> >> 2) Is someone maintaining it ? 
>
> Wasn't there some discussion to remove PolyBoRi? 
>
> Cheers, 
> Simon 
>
> -- 
> You received this message because you are subscribed to the Google Groups 
> "sage-devel" group. 
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to sage-devel+unsubscr...@googlegroups.com. 
> To post to this group, send email to sage-devel@googlegroups.com. 
> Visit this group at http://groups.google.com/group/sage-devel. 
> For more options, visit https://groups.google.com/d/optout. 

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.


[sage-devel] Re: What in Sage uses Boost ? And who maintains it ?

2015-11-11 Thread Simon King
Hi!

On 2015-11-11, 'Martin Albrecht' via sage-devel  
wrote:
>> 1) What in Sage uses Boost ?
>
> I know this one: PolyBoRi.
>  
>> 2) Is someone maintaining it ?

Wasn't there some discussion to remove PolyBoRi?

Cheers,
Simon

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.