Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SAT4J
sat4j
Commits
a5819919
Commit
a5819919
authored
Mar 09, 2022
by
Daniel Le Berre
Browse files
With Romain and Manu, IVec is now Iterable
parent
6183de1e
Pipeline
#20146
failed with stages
in 19 minutes and 49 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
org.sat4j.core/src/main/java/org/sat4j/specs/IVec.java
View file @
a5819919
...
...
@@ -31,7 +31,6 @@ package org.sat4j.specs;
import
java.io.Serializable
;
import
java.util.Comparator
;
import
java.util.Iterator
;
import
java.util.NoSuchElementException
;
/**
...
...
@@ -39,7 +38,7 @@ import java.util.NoSuchElementException;
*
* @author leberre
*/
public
interface
IVec
<
T
>
extends
Serializable
,
Cloneable
{
public
interface
IVec
<
T
>
extends
Serializable
,
Cloneable
,
Iterable
<
T
>
{
/**
* @return the number of elements contained in the vector
...
...
@@ -211,8 +210,6 @@ public interface IVec<T> extends Serializable, Cloneable {
*/
boolean
isEmpty
();
Iterator
<
T
>
iterator
();
/**
*
* @param element
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment