-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from BerkeleyAutomation/python3
Python 2/3 support and general cleanup.
- Loading branch information
Showing
128 changed files
with
9,493 additions
and
5,338 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[flake8] | ||
ignore = C408, E121, E123, E126, E226, E24, E704, W503, W504, W605 | ||
exclude = docs/source/conf.py | ||
inline-quotes = " | ||
no-avoid-escape = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[style] | ||
based_on_style=pep8 | ||
allow_split_before_dict_value=False | ||
join_multiple_lines=False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# Copyright ©2017. The Regents of the University of California (Regents). | ||
# All Rights Reserved. Permission to use, copy, modify, and distribute this | ||
# software and its documentation for educational, research, and not-for-profit | ||
# purposes, without fee and without a signed licensing agreement, is hereby | ||
# granted, provided that the above copyright notice, this paragraph and the | ||
# following two paragraphs appear in all copies, modifications, and | ||
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150 | ||
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201, | ||
# [email protected], | ||
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities. | ||
|
||
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, | ||
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF | ||
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN | ||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | ||
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED | ||
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE | ||
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | ||
language: python | ||
|
||
matrix: | ||
include: | ||
- name: "Python 2.7 on Xenial Linux" | ||
python: 2.7 | ||
dist: xenial | ||
|
||
- name: "Python 3.5 on Xenial Linux" | ||
python: 3.5 | ||
dist: xenial | ||
|
||
- name: "Python 3.6 on Xenial Linux" | ||
python: 3.6 | ||
dist: xenial | ||
|
||
- name: "Python 3.7 on Xenial Linux" | ||
python: 3.7 | ||
dist: xenial | ||
|
||
- name: "Linter" | ||
python: 3.7 | ||
dist: xenial | ||
before_install: [] | ||
install: [] | ||
script: | ||
- pip install yapf==0.27.0 # Must use specific version. | ||
- pip install flake8 flake8-comprehensions flake8-quotes==2.0.0 | ||
- ./ci/travis/format.sh --all # Should exit with 0 for no diffs. | ||
- flake8 | ||
|
||
before_install: | ||
- sudo apt-get update | ||
- sudo apt-get install -y python-opengl # For GLU. | ||
|
||
install: | ||
- pip install . | ||
|
||
script: | ||
- python -c "import gqcnn" | ||
|
||
notifications: | ||
email: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,25 @@ | ||
# Copyright ©2017. The Regents of the University of California (Regents). | ||
# All Rights Reserved. Permission to use, copy, modify, and distribute this | ||
# software and its documentation for educational, research, and not-for-profit | ||
# purposes, without fee and without a signed licensing agreement, is hereby | ||
# granted, provided that the above copyright notice, this paragraph and the | ||
# following two paragraphs appear in all copies, modifications, and | ||
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150 | ||
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201, | ||
# [email protected], | ||
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities. | ||
|
||
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, | ||
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF | ||
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN | ||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | ||
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED | ||
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE | ||
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | ||
|
||
cmake_minimum_required(VERSION 2.8.3) | ||
project(gqcnn) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,25 @@ | ||
# Copyright ©2017. The Regents of the University of California (Regents). | ||
# All Rights Reserved. Permission to use, copy, modify, and distribute this | ||
# software and its documentation for educational, research, and not-for-profit | ||
# purposes, without fee and without a signed licensing agreement, is hereby | ||
# granted, provided that the above copyright notice, this paragraph and the | ||
# following two paragraphs appear in all copies, modifications, and | ||
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150 | ||
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201, | ||
# [email protected], | ||
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities. | ||
|
||
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, | ||
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF | ||
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN | ||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | ||
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED | ||
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE | ||
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | ||
|
||
# policy params | ||
policy: | ||
# general params | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,25 @@ | ||
# Copyright ©2017. The Regents of the University of California (Regents). | ||
# All Rights Reserved. Permission to use, copy, modify, and distribute this | ||
# software and its documentation for educational, research, and not-for-profit | ||
# purposes, without fee and without a signed licensing agreement, is hereby | ||
# granted, provided that the above copyright notice, this paragraph and the | ||
# following two paragraphs appear in all copies, modifications, and | ||
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150 | ||
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201, | ||
# [email protected], | ||
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities. | ||
|
||
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, | ||
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF | ||
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN | ||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | ||
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED | ||
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE | ||
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | ||
|
||
policy: | ||
type: fully_conv_pj | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,25 @@ | ||
# Copyright ©2017. The Regents of the University of California (Regents). | ||
# All Rights Reserved. Permission to use, copy, modify, and distribute this | ||
# software and its documentation for educational, research, and not-for-profit | ||
# purposes, without fee and without a signed licensing agreement, is hereby | ||
# granted, provided that the above copyright notice, this paragraph and the | ||
# following two paragraphs appear in all copies, modifications, and | ||
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150 | ||
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201, | ||
# [email protected], | ||
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities. | ||
|
||
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, | ||
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF | ||
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN | ||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | ||
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED | ||
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE | ||
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | ||
|
||
policy: | ||
type: fully_conv_suction | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,25 @@ | ||
# Copyright ©2017. The Regents of the University of California (Regents). | ||
# All Rights Reserved. Permission to use, copy, modify, and distribute this | ||
# software and its documentation for educational, research, and not-for-profit | ||
# purposes, without fee and without a signed licensing agreement, is hereby | ||
# granted, provided that the above copyright notice, this paragraph and the | ||
# following two paragraphs appear in all copies, modifications, and | ||
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150 | ||
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201, | ||
# [email protected], | ||
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities. | ||
|
||
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, | ||
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF | ||
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN | ||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | ||
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED | ||
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE | ||
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | ||
|
||
policy: | ||
# optimization params | ||
num_seed_samples: 128 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,25 @@ | ||
# Copyright ©2017. The Regents of the University of California (Regents). | ||
# All Rights Reserved. Permission to use, copy, modify, and distribute this | ||
# software and its documentation for educational, research, and not-for-profit | ||
# purposes, without fee and without a signed licensing agreement, is hereby | ||
# granted, provided that the above copyright notice, this paragraph and the | ||
# following two paragraphs appear in all copies, modifications, and | ||
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150 | ||
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201, | ||
# [email protected], | ||
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities. | ||
|
||
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, | ||
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF | ||
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN | ||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | ||
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED | ||
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE | ||
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | ||
|
||
policy: | ||
# optimization params | ||
num_seed_samples: 200 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,25 @@ | ||
# Copyright ©2017. The Regents of the University of California (Regents). | ||
# All Rights Reserved. Permission to use, copy, modify, and distribute this | ||
# software and its documentation for educational, research, and not-for-profit | ||
# purposes, without fee and without a signed licensing agreement, is hereby | ||
# granted, provided that the above copyright notice, this paragraph and the | ||
# following two paragraphs appear in all copies, modifications, and | ||
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150 | ||
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201, | ||
# [email protected], | ||
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities. | ||
|
||
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, | ||
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF | ||
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN | ||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | ||
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED | ||
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE | ||
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | ||
|
||
# policy params | ||
policy: | ||
# optimization params | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,25 @@ | ||
# Copyright ©2017. The Regents of the University of California (Regents). | ||
# All Rights Reserved. Permission to use, copy, modify, and distribute this | ||
# software and its documentation for educational, research, and not-for-profit | ||
# purposes, without fee and without a signed licensing agreement, is hereby | ||
# granted, provided that the above copyright notice, this paragraph and the | ||
# following two paragraphs appear in all copies, modifications, and | ||
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150 | ||
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201, | ||
# [email protected], | ||
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities. | ||
|
||
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, | ||
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF | ||
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN | ||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | ||
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED | ||
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE | ||
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | ||
|
||
# policy params | ||
policy: | ||
# optimization params | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,25 @@ | ||
# Copyright ©2017. The Regents of the University of California (Regents). | ||
# All Rights Reserved. Permission to use, copy, modify, and distribute this | ||
# software and its documentation for educational, research, and not-for-profit | ||
# purposes, without fee and without a signed licensing agreement, is hereby | ||
# granted, provided that the above copyright notice, this paragraph and the | ||
# following two paragraphs appear in all copies, modifications, and | ||
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150 | ||
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201, | ||
# [email protected], | ||
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities. | ||
|
||
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, | ||
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF | ||
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN | ||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | ||
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED | ||
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE | ||
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | ||
|
||
# policy params | ||
policy: | ||
# optimization params | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,25 @@ | ||
# Copyright ©2017. The Regents of the University of California (Regents). | ||
# All Rights Reserved. Permission to use, copy, modify, and distribute this | ||
# software and its documentation for educational, research, and not-for-profit | ||
# purposes, without fee and without a signed licensing agreement, is hereby | ||
# granted, provided that the above copyright notice, this paragraph and the | ||
# following two paragraphs appear in all copies, modifications, and | ||
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150 | ||
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201, | ||
# [email protected], | ||
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities. | ||
|
||
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, | ||
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF | ||
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN | ||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | ||
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED | ||
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE | ||
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | ||
|
||
policy: | ||
type: fully_conv_pj | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,25 @@ | ||
# Copyright ©2017. The Regents of the University of California (Regents). | ||
# All Rights Reserved. Permission to use, copy, modify, and distribute this | ||
# software and its documentation for educational, research, and not-for-profit | ||
# purposes, without fee and without a signed licensing agreement, is hereby | ||
# granted, provided that the above copyright notice, this paragraph and the | ||
# following two paragraphs appear in all copies, modifications, and | ||
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150 | ||
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201, | ||
# [email protected], | ||
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities. | ||
|
||
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, | ||
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF | ||
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN | ||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | ||
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED | ||
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE | ||
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | ||
|
||
policy: | ||
type: fully_conv_suction | ||
|
||
|
Oops, something went wrong.