Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-solvers
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
agnumpde
dune-solvers
Commits
acb70a7c
Commit
acb70a7c
authored
12 years ago
by
Oliver Sander
Committed by
sander
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
explicit cast to get rid of a signed/unsigned warning
[[Imported from SVN: r8652]]
parent
596180ee
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/solvers/solvers/quadraticipopt.hh
+1
-1
1 addition, 1 deletion
dune/solvers/solvers/quadraticipopt.hh
with
1 addition
and
1 deletion
dune/solvers/solvers/quadraticipopt.hh
+
1
−
1
View file @
acb70a7c
...
@@ -182,7 +182,7 @@ get_bounds_info(Ipopt::Index n, Ipopt::Number* x_l, Ipopt::Number* x_u,
...
@@ -182,7 +182,7 @@ get_bounds_info(Ipopt::Index n, Ipopt::Number* x_l, Ipopt::Number* x_u,
{
{
// here, the n and m we gave IPOPT in get_nlp_info are passed back to us.
// here, the n and m we gave IPOPT in get_nlp_info are passed back to us.
// If desired, we could assert to make sure they are what we think they are.
// If desired, we could assert to make sure they are what we think they are.
assert
(
n
==
x_
->
dim
());
assert
(
n
==
(
Ipopt
::
Index
)
x_
->
dim
());
assert
(
m
==
0
);
assert
(
m
==
0
);
if
(
obstacles_
)
{
if
(
obstacles_
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment