~ubuntu-branches/ubuntu/precise/insighttoolkit/precise

« back to all changes in this revision

Viewing changes to Code/Numerics/itkLBFGSOptimizer.cxx

  • Committer: Bazaar Package Importer
  • Author(s): Steve M. Robbins
  • Date: 2008-05-31 12:07:29 UTC
  • mfrom: (3.1.3 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080531120729-7g7layn480le43ko
Tags: 3.6.0-3
* debian/patches/gccxml-workaround.patch: New.  Work around gccxml issue
  with #include_next; c.f. http://www.gccxml.org/Bug/view.php?id=7134.  
* debian/patches/gcc43.patch: include <cstring> in itkNeighbourhood.h.
  This only showed up in the tcl wrapping step.

* Above two entries fix FTBFS for GCC 4.3-based systems.
  Closes: #478500.

* debian/patches/sharedforward.patch: New.  Ensure that linux/sparc
  systems are not also configured as a SUN sparc system, which requires
  SUN header sys/isa_defs.h.  Closes: #478940, #483312.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
  Program:   Insight Segmentation & Registration Toolkit
4
4
  Module:    $RCSfile: itkLBFGSOptimizer.cxx,v $
5
5
  Language:  C++
6
 
  Date:      $Date: 2005/03/15 02:19:46 $
7
 
  Version:   $Revision: 1.20 $
 
6
  Date:      $Date: 2007-03-22 21:39:37 $
 
7
  Version:   $Revision: 1.21 $
8
8
 
9
9
  Copyright (c) Insight Software Consortium. All rights reserved.
10
10
  See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
219
219
 
220
220
}
221
221
 
222
 
 
223
 
 
224
222
/**
225
223
 * Start the optimization
226
224
 */
275
273
      }
276
274
    }
277
275
 
278
 
  this->SetCurrentPosition( parameters );       
 
276
  this->SetCurrentPosition( parameters );
279
277
  
280
278
  this->InvokeEvent( EndEvent() );
281
279
 
282
280
}
283
281
 
284
 
 
285
 
 
286
 
 
287
282
/**
288
283
 * Get the Optimizer
289
284
 */
294
289
  return m_VnlOptimizer;
295
290
}
296
291
 
297
 
 
298
 
 
299
 
 
300
292
} // end namespace itk
301
293
 
302
294
#endif