gecoder-with-gecode 1.1.1 → 1.1.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -152,7 +152,7 @@ namespace Gecode { namespace Int { namespace Count {
152
152
  ViewArray<VX>& x, VY y, VZ z, int c) {
153
153
  if (z.assigned())
154
154
  return EqInt<VX,VY>::post(home,x,y,z.val()+c);
155
- if (sharing(x,y,z))
155
+ if (EqView::sharing(x,y,z))
156
156
  (void) new (home) EqView<VX,VY,VZ,true>(home,x,y,z,c);
157
157
  else
158
158
  (void) new (home) EqView<VX,VY,VZ,false>(home,x,y,z,c);
@@ -309,7 +309,7 @@ namespace Gecode { namespace Int { namespace Count {
309
309
  VY y, VZ z, int c) {
310
310
  if (z.assigned())
311
311
  return LqInt<VX,VY>::post(home,x,y,z.val()+c);
312
- if (sharing(x,y,z))
312
+ if (LqView::sharing(x,y,z))
313
313
  (void) new (home) LqView<VX,VY,VZ,true>(home,x,y,z,c);
314
314
  else
315
315
  (void) new (home) LqView<VX,VY,VZ,false>(home,x,y,z,c);
@@ -384,7 +384,7 @@ namespace Gecode { namespace Int { namespace Count {
384
384
  ViewArray<VX>& x, VY y, VZ z, int c) {
385
385
  if (z.assigned())
386
386
  return GqInt<VX,VY>::post(home,x,y,z.val()+c);
387
- if (sharing(x,y,z))
387
+ if (GqView::sharing(x,y,z))
388
388
  (void) new (home) GqView<VX,VY,VZ,true>(home,x,y,z,c);
389
389
  else
390
390
  (void) new (home) GqView<VX,VY,VZ,false>(home,x,y,z,c);
@@ -1,4 +1,4 @@
1
1
  module GecodeR #:nodoc:
2
2
  # A string representation of the Gecode/R version.
3
- VERSION = '1.1.1'
3
+ VERSION = '1.1.1.1'
4
4
  end
@@ -18,8 +18,8 @@ module WebsiteRakeHelpers
18
18
 
19
19
  # Remove generated documentation.
20
20
  def clobber
21
- rm_rf 'doc/output'
22
- rm_rf 'doc/tmp'
21
+ FileUtils.rm_rf 'doc/output'
22
+ FileUtils.rm_rf 'doc/tmp'
23
23
  end
24
24
 
25
25
  # Generates the website with webgen.
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gecoder-with-gecode
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 81
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
9
  - 1
10
- version: 1.1.1
10
+ - 1
11
+ version: 1.1.1.1
11
12
  platform: ruby
12
13
  authors:
13
14
  - Gecode/R Development Team